From 57a7a39cd0893148328a278b7539417fa37110eb Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:04:35 +0100 Subject: [PATCH] fix(docker): use root path for todo-web health check The /health endpoint requires a new Docker image build. Use root path temporarily until the new image is deployed via Watchtower. 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 f0b2c578d..9b2dc19d3 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -226,7 +226,7 @@ services: ports: - "5188:5188" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5188/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5188/"] interval: 30s timeout: 10s retries: 3