fix(infra): use 127.0.0.1 in nginx healthcheck (alpine resolves localhost to IPv6)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-24 12:38:10 +01:00
parent 6d231ee8bf
commit 9139b01d9f

View file

@ -101,7 +101,7 @@ services:
ports:
- "4400:80"
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost/health"]
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1/health"]
interval: 30s
timeout: 5s
retries: 3