fix(picture): fix health endpoint and port consistency for Docker deployment

Exclude /health from global prefix so healthchecks hit /health instead of
/api/v1/health. Update Dockerfile EXPOSE and healthcheck to use port 3040
matching docker-compose config.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-20 20:54:27 +01:00
parent 15cde622e4
commit 887b60c8c1
3 changed files with 9 additions and 7 deletions

View file

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