From a8252a1809176f2b7787e8d9f8ac3633c4b2c6b5 Mon Sep 17 00:00:00 2001 From: Christomatt Date: Sat, 31 Jan 2026 07:44:43 +0100 Subject: [PATCH] Fix docker-compose healthcheck: use 127.0.0.1 instead of localhost --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9584f60..17f99b2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -85,7 +85,7 @@ services: condition: service_healthy # Increased start period to allow migrations to run healthcheck: - test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000/api/health"] + test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:3000/api/health"] interval: 30s timeout: 10s retries: 3