From 79e3c09af2c134844d1e22859c787241f6522316 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 26 Jan 2026 11:13:58 +0100 Subject: [PATCH] fix(docker): correct calendar-backend health check path - calendar-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 12399763b..fe1e4c871 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -257,7 +257,7 @@ services: ports: - "3016:3016" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3016/api/v1/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3016/health"] interval: 30s timeout: 10s retries: 3