From f4a86e1083a68f3787c7e740ede2663c61d54dca Mon Sep 17 00:00:00 2001 From: Rafael Marchetti <87501366+rafamarchetti@users.noreply.github.com> Date: Sat, 18 Apr 2026 03:41:07 -0300 Subject: [PATCH] fix: corrige path do healthcheck do evo-core MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit O healthcheck estava configurado para /api/v1/health, que retorna HTTP 404. O endpoint correto é /health. Sem essa correção, o container evo-core fica marcado como "unhealthy" mesmo estando funcional, o que impede que serviços dependentes (como evo-frontend) consigam iniciar. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 64e2748..c024531 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -189,7 +189,7 @@ services: postgres: condition: service_healthy healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5555/api/v1/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5555/health"] interval: 15s timeout: 5s retries: 5