From 9139b01d9f2431b2daeb2380665919b2805935ff Mon Sep 17 00:00:00 2001 From: Till JS Date: Tue, 24 Mar 2026 12:38:10 +0100 Subject: [PATCH] fix(infra): use 127.0.0.1 in nginx healthcheck (alpine resolves localhost to IPv6) Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.macmini.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index a6a179e0e..d0be579ed 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -101,7 +101,7 @@ services: ports: - "4400:80" healthcheck: - test: ["CMD", "wget", "-q", "--spider", "http://localhost/health"] + test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1/health"] interval: 30s timeout: 5s retries: 3