From 8a1eee975f469b9078b2b4af2504ca95c33e20cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 15 Nov 2025 13:56:37 +0100 Subject: [PATCH] fix: update Soketi 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 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- dev/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/compose.yaml b/dev/compose.yaml index cd1af24..913fb5b 100644 --- a/dev/compose.yaml +++ b/dev/compose.yaml @@ -150,7 +150,7 @@ services: - SOKETI_DEFAULT_APP_KEY=${DEV_COOLIFY_PUSHER_APP_KEY} - SOKETI_DEFAULT_APP_SECRET=${DEV_COOLIFY_PUSHER_APP_SECRET} healthcheck: - test: ["CMD", "wget", "-qO-", "http://localhost:6001/ready"] + test: ["CMD", "wget", "-qO-", "http://127.0.0.1:6001/ready"] interval: 5s timeout: 5s retries: 10