From 9fedb7cfdd6509a20cb31e19bd8984eafe06a6b6 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:49:58 +0100 Subject: [PATCH] fix(docker): correct health check paths for mana-core-auth and clock-backend - mana-core-auth: /api/v1/health -> /health - clock-backend: /api/v1/health -> /health Co-Authored-By: Claude Opus 4.5 --- docker-compose.macmini.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index df179a5b2..be074daa7 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -86,7 +86,7 @@ services: ports: - "3001:3001" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3001/api/v1/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3001/health"] interval: 30s timeout: 10s retries: 3 @@ -314,7 +314,7 @@ services: ports: - "3017:3017" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3017/api/v1/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3017/health"] interval: 30s timeout: 10s retries: 3