fix(docker): correct calendar-backend health check path

- calendar-backend: /api/v1/health -> /health

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-26 11:13:58 +01:00
parent bbc051d34a
commit 79e3c09af2

View file

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