Skip to content

Commit

Permalink
Add dynamic compose for planning-poker (#6100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 23, 2024
1 parent 72a22c8 commit e846ba9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/planning-poker/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"port": 8880,
"available": true,
"exposable": true,
"dynamic_config": true,
"id": "planning-poker",
"tipi_version": 2,
"tipi_version": 3,
"version": "1.2.1",
"categories": ["development"],
"description": "",
Expand All @@ -15,5 +16,5 @@
"form_fields": [],
"supported_architectures": ["amd64", "arm64"],
"created_at": 1691943801422,
"updated_at": 1723566285000
"updated_at": 1734908563647
}
23 changes: 23 additions & 0 deletions apps/planning-poker/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"services": [
{
"name": "planning-poker",
"image": "axeleroy/self-host-planning-poker:1.2.1",
"isMain": true,
"internalPort": 8000,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/data"
}
],
"healthCheck": {
"interval": "10s",
"timeout": "5s",
"retries": 5,
"startPeriod": "30s",
"test": "wget --no-verbose --tries=1 --spider http://127.0.0.1:8000"
}
}
]
}

0 comments on commit e846ba9

Please sign in to comment.