From bbc536d83cef85b9f2c8368c4f46028cc20a3e69 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:02:24 +0100 Subject: [PATCH] fix(docker): correct todo-backend health check path in compose Health check was using /api/v1/health but endpoint is /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 3c7347ba3..ce2ef74ff 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -203,7 +203,7 @@ services: ports: - "3018:3018" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3018/api/v1/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3018/health"] interval: 30s timeout: 10s retries: 3