From bff168ee4372ec077fb18e07b8c759161bde5921 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Fri, 23 Jan 2026 12:18:26 +0100 Subject: [PATCH] fix(docker): correct todo-backend health check path Changed from /api/health to /api/v1/health to match the actual endpoint. 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 a8f5000fc..10963c756 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -182,7 +182,7 @@ services: ports: - "3018:3018" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3018/api/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3018/api/v1/health"] interval: 30s timeout: 10s retries: 3