From 2985433ecbc5a1f8781870e85e2eab99e0f89aa6 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Thu, 25 Jun 2026 16:33:36 -0500 Subject: [PATCH] fix: add HOSTNAME=0.0.0.0 and fix web health check --- coolify-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coolify-compose.yml b/coolify-compose.yml index 7c1de7c..24cccac 100644 --- a/coolify-compose.yml +++ b/coolify-compose.yml @@ -52,10 +52,11 @@ services: environment: - NODE_ENV=production - PORT=3000 + - HOSTNAME=0.0.0.0 - NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL} - NEXT_PUBLIC_WS_URL=${NEXT_PUBLIC_WS_URL} healthcheck: - test: ["CMD", "wget", "-qO-", "http://localhost:3000/status"] + test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/status"] interval: 30s timeout: 5s retries: 3