From 9cb5faa44fe6fe4654b6e868dd14920a32711548 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 21 Jan 2026 12:51:09 +0100 Subject: [PATCH] Fix health check to use IPv4 Health check was using localhost which resolved to IPv6 [::1], but the server binds to 0.0.0.0. Changed to 127.0.0.1. 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 58ad386..cfdbda0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -29,7 +29,7 @@ services: networks: - traefik-public healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3000/health"] interval: 30s timeout: 3s retries: 3