From 7b2bdefee32f21820caf46ac77b82ebfcefa8e80 Mon Sep 17 00:00:00 2001 From: Camille Date: Sun, 31 May 2026 00:17:35 +0200 Subject: [PATCH] fix: frontend health check use 127.0.0.1 to avoid IPv6 resolution --- docker-compose.coolify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.coolify.yml b/docker-compose.coolify.yml index 2b668f1..8692c9a 100644 --- a/docker-compose.coolify.yml +++ b/docker-compose.coolify.yml @@ -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