fix(docker): correct todo-backend health check path in compose

Health check was using /api/v1/health but endpoint is /health

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-26 10:02:24 +01:00
parent d2b1a1c8a9
commit bbc536d83c

View file

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