From df7149db3462b5f1c33af9889a0c5e428a45580d Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 26 Dec 2025 23:48:12 -0500 Subject: [PATCH] Fix healthcheck to use 127.0.0.1 instead of localhost MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Alpine Linux doesn't resolve localhost properly in some cases 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 71b45b0..794993d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: networks: - traefik-public healthcheck: - test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000"] + test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:3000"] interval: 30s timeout: 10s retries: 3