diff --git a/apps/planning-poker/config.json b/apps/planning-poker/config.json index 165412bb34..7cfa7e2d50 100644 --- a/apps/planning-poker/config.json +++ b/apps/planning-poker/config.json @@ -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": "", @@ -15,5 +16,5 @@ "form_fields": [], "supported_architectures": ["amd64", "arm64"], "created_at": 1691943801422, - "updated_at": 1723566285000 + "updated_at": 1734908563647 } diff --git a/apps/planning-poker/docker-compose.json b/apps/planning-poker/docker-compose.json new file mode 100644 index 0000000000..d539b0ac37 --- /dev/null +++ b/apps/planning-poker/docker-compose.json @@ -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" + } + } + ] +}