fix(planta-backend): correct health check endpoint to /api/v1/health

- Update Dockerfile HEALTHCHECK to use /api/v1/health
- Update docker-compose.macmini.yml health check endpoint
- Increase start_period to 30s

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-02-17 10:55:40 +01:00
parent 4c3ca3bdf6
commit 3b00303e7b
2 changed files with 3 additions and 3 deletions

View file

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