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

The health endpoint is at /api/v1/health, not /api/health.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-27 15:04:20 +01:00
parent d1e9c87b1c
commit ac164c622c

View file

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