From 9f9c2148b4b75b6fe3cb245a63b4b425490c903f Mon Sep 17 00:00:00 2001 From: devilreef Date: Thu, 30 Apr 2026 09:52:03 +0600 Subject: [PATCH] =?UTF-8?q?chore:=20deploy=20frontend=20to=20summer;=20fix?= =?UTF-8?q?=20healthcheck=20localhost=E2=86=92127.0.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit alpine wget resolves localhost to ::1 (IPv6) but node only binds IPv4; switched healthcheck URL to 127.0.0.1 to fix unhealthy container. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7af3134..55cf2b2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -63,7 +63,7 @@ services: target: /now-playing read_only: true healthcheck: - test: ['CMD', 'wget', '-q', '-O', '-', 'http://localhost:3000/api/stations.json'] + test: ['CMD', 'wget', '-q', '-O', '-', 'http://127.0.0.1:3000/api/stations.json'] interval: 30s timeout: 5s retries: 3