Skip to content

Commit

Permalink
Add dynamic compose for kavita (#6096)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 23, 2024
1 parent bf99aec commit d7d2e84
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/kavita/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"port": 8175,
"available": true,
"exposable": true,
"dynamic_config": true,
"id": "kavita",
"tipi_version": 17,
"tipi_version": 18,
"version": "0.8.4",
"categories": ["media"],
"description": "Kavita is a fast, feature rich, cross platform reading server",
Expand All @@ -15,5 +16,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1732321295000
"updated_at": 1734908347559
}
31 changes: 31 additions & 0 deletions apps/kavita/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"services": [
{
"name": "kavita",
"image": "jvmilazz0/kavita:0.8.4",
"isMain": true,
"internalPort": 5000,
"environment": {
"TZ": "${TZ}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/kavita-config",
"containerPath": "/kavita/config"
},
{
"hostPath": "${ROOT_FOLDER_HOST}/media/data/books",
"containerPath": "/books"
},
{
"hostPath": "${ROOT_FOLDER_HOST}/media/data/comics",
"containerPath": "/comics"
},
{
"hostPath": "${ROOT_FOLDER_HOST}/media/data/manga",
"containerPath": "/manga"
}
]
}
]
}

0 comments on commit d7d2e84

Please sign in to comment.