From 1cf91e2f3236d93ec103763b0d1e9c1a30f30e3d Mon Sep 17 00:00:00 2001 From: Boban Blaskovic Date: Sun, 31 May 2026 21:18:06 +0200 Subject: [PATCH] nginx healthcheck: 127.0.0.1 instead of localhost (only IPv4 listener) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5734525..7e5316f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -57,7 +57,7 @@ services: condition: service_started networks: [clu] healthcheck: - test: ["CMD", "wget", "-qO-", "http://localhost/"] + test: ["CMD", "wget", "-qO-", "http://127.0.0.1/"] interval: 30s timeout: 5s retries: 3