Skip to content

Commit

Permalink
Add dynamic compose for kanboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand committed Dec 13, 2024
1 parent 3c8e69c commit 5393f84
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/kanboard/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"name": "Kanboard",
"available": true,
"exposable": true,
"dynamic_config": true,
"port": 8010,
"id": "kanboard",
"description": "Kanboard is a free and open source Kanban project management software.",
"tipi_version": 16,
"tipi_version": 17,
"version": "1.2.42",
"categories": ["development"],
"short_desc": "Open Source Kanban Board",
Expand All @@ -22,5 +23,5 @@
],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1731437600000
"updated_at": 1734113923199
}
23 changes: 23 additions & 0 deletions apps/kanboard/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"services": [
{
"name": "kanboard",
"image": "kanboard/kanboard:v1.2.42",
"isMain": true,
"internalPort": 80,
"environment": {
"PLUGIN_INSTALLER": "${PLUGIN_INSTALLER}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/kanboard_data",
"containerPath": "/var/www/app/data"
},
{
"hostPath": "${APP_DATA_DIR}/data/kanboard_plugins",
"containerPath": "/var/www/app/plugins"
}
]
}
]
}

0 comments on commit 5393f84

Please sign in to comment.