From e0f13cdaa62e14450bdc4885bda4283bfdd75a5b Mon Sep 17 00:00:00 2001 From: Vectry Date: Tue, 10 Feb 2026 01:36:42 +0000 Subject: [PATCH] fix: healthcheck uses 127.0.0.1 instead of localhost to avoid IPv6 resolution issue --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 85fb2f3..44026a3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,7 +17,7 @@ services: migrate: condition: service_completed_successfully healthcheck: - test: ["CMD", "wget", "--spider", "--quiet", "http://localhost:3000/api/health"] + test: ["CMD", "wget", "--spider", "--quiet", "http://127.0.0.1:3000/api/health"] interval: 30s timeout: 10s retries: 3