From ec8847cee32cc4b18d18cb25a4b792ffa4d59ee7 Mon Sep 17 00:00:00 2001 From: Till JS Date: Sat, 21 Mar 2026 12:32:08 +0100 Subject: [PATCH] fix(search): correct health check URL to /api/v1/health The NestJS app uses a global /api/v1 prefix, but the health check was hitting /health causing 5600+ consecutive failures and unhealthy status. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.macmini.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index 24ef2ba56..eb95a572f 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -251,7 +251,7 @@ services: ports: - "3020:3020" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3020/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3020/api/v1/health"] interval: 30s timeout: 10s retries: 3