From e170adee12a68b84d21acad06b315e84dbdfcee2 Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Wed, 1 Jul 2026 14:42:30 +0000 Subject: [PATCH] Healthcheck: 127.0.0.1 (avoid IPv6 localhost refused) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index c280f2c..7d9b91b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,7 +9,7 @@ services: - APP_SLUG=noticeboard - OFFICE_IP_CHECK=${OFFICE_IP_CHECK:-disabled} healthcheck: - test: ["CMD-SHELL", "wget -qO- http://localhost:3001/health || exit 1"] + test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:3001/health || exit 1"] interval: 10s retries: 5 start_period: 15s