From 4a56c888b09f96775290ae95b6be7411d28aaddc Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Fri, 5 Dec 2025 03:32:22 +0100 Subject: [PATCH] fix(staging): correct chat-backend health check path to /api/v1/health MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The chat-backend NestJS health endpoint is at /api/v1/health, not /api/health. This was causing the container to be marked as unhealthy, preventing chat-web from starting due to its depends_on condition. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docker-compose.staging.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.staging.yml b/docker-compose.staging.yml index 6ff636dbb..771c7ced5 100644 --- a/docker-compose.staging.yml +++ b/docker-compose.staging.yml @@ -112,7 +112,7 @@ services: ports: - "3002:3002" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3002/api/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3002/api/v1/health"] interval: 30s timeout: 10s retries: 3