From 5b213d8e51b3a584552fba6105f72bc2371bca85 Mon Sep 17 00:00:00 2001 From: alexz Date: Mon, 20 Apr 2026 17:42:13 +0000 Subject: [PATCH] Fix apricot-blossom health check: use 127.0.0.1 instead of localhost (IPv6 issue) --- apps/apricot-blossom/docker-compose.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/apricot-blossom/docker-compose.json b/apps/apricot-blossom/docker-compose.json index 0d376e0..4f1e782 100644 --- a/apps/apricot-blossom/docker-compose.json +++ b/apps/apricot-blossom/docker-compose.json @@ -25,7 +25,7 @@ } ], "healthCheck": { - "test": "wget --no-verbose --tries=1 --spider http://localhost:3000/ || exit 1", + "test": "wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/ || exit 1", "interval": "30s", "timeout": "10s", "retries": 3