fix: frontend health check use 127.0.0.1 to avoid IPv6 resolution
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was canceled

This commit is contained in:
Camille 2026-05-31 00:17:35 +02:00
parent b96c543c5c
commit 7b2bdefee3

View file

@ -25,7 +25,7 @@ services:
# the corresponding Traefik routing labels automatically.
- SERVICE_FQDN_FRONTEND_80
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost:80/healthz || exit 1"]
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:80/healthz || exit 1"]
interval: 30s
timeout: 5s
start_period: 10s