Skip to content

Commit

Permalink
Add dynamic compose for komga (#6097)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 23, 2024
1 parent b033c1b commit 0a9ac23
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/komga/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"port": 2560,
"available": true,
"exposable": true,
"dynamic_config": true,
"id": "komga",
"tipi_version": 12,
"tipi_version": 13,
"version": "1.15.1",
"categories": ["media"],
"description": "A media server for your comics, mangas, BDs, magazines and eBooks.",
Expand All @@ -16,5 +17,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1734430832000
"updated_at": 1734908364355
}
23 changes: 23 additions & 0 deletions apps/komga/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"services": [
{
"name": "komga",
"image": "ghcr.io/gotson/komga:1.15.1",
"isMain": true,
"internalPort": 25600,
"environment": {
"TZ": "${TZ}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/config",
"containerPath": "/config"
},
{
"hostPath": "${APP_DATA_DIR}/data/data",
"containerPath": "/data"
}
]
}
]
}

0 comments on commit 0a9ac23

Please sign in to comment.