From 3899c86b29f1e9fcc63ebaa60e975ab11f93c88b Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Mon, 9 Feb 2026 11:42:29 +0100 Subject: [PATCH] Fix docs healthcheck: use 127.0.0.1 instead of localhost Nginx inside the docs container listens on IPv4 (0.0.0.0:80) but wget resolves localhost to IPv6 (::1), causing connection refused. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8bd56c5..046eb08 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1525,7 +1525,7 @@ services: - breakpilot-pwa-network restart: unless-stopped healthcheck: - test: ["CMD", "wget", "-q", "--spider", "http://localhost:80/"] + test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:80/"] interval: 30s timeout: 10s retries: 3