From f8a07df60e5dfacb72f8473b20a3531ff8ff6945 Mon Sep 17 00:00:00 2001 From: Ali Alavi Date: Fri, 4 Sep 2026 23:44:59 +0000 Subject: [PATCH] fix(healthcheck): use 127.0.0.1 instead of localhost to prevent IPv6 Alpine resolution failure --- docker-compose.staging.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.staging.yml b/docker-compose.staging.yml index b8f5ce1..b5963e8 100644 --- a/docker-compose.staging.yml +++ b/docker-compose.staging.yml @@ -19,7 +19,7 @@ services: - API_BASE_URL=http://web:8000 - NEXT_PUBLIC_SECURITY_KEY=t5yugymks5458fd4ghfg6h6fg healthcheck: - test: ["CMD", "wget", "-qO-", "http://localhost:3000/healthz"] + test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/healthz"] interval: 30s timeout: 5s retries: 3