fix(docker): use root path for todo-web health check

The /health endpoint requires a new Docker image build. Use root path
temporarily until the new image is deployed via Watchtower.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-26 10:04:35 +01:00
parent 98c08fd8d0
commit 57a7a39cd0

View file

@ -226,7 +226,7 @@ services:
ports:
- "5188:5188"
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5188/health"]
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5188/"]
interval: 30s
timeout: 10s
retries: 3