From bbc051d34a5bef5915244565b9951eb01ab70d88 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 26 Jan 2026 11:03:11 +0100 Subject: [PATCH] fix(docker): correct chat-backend health check path - chat-backend: /api/v1/health -> /health Co-Authored-By: Claude Opus 4.5 --- 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 9848714d4..12399763b 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -152,7 +152,7 @@ services: ports: - "3002:3002" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3002/api/v1/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3002/health"] interval: 30s timeout: 10s retries: 3