From b6bd07becad6af68790705ba5592bcb6f4800861 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Fri, 13 Feb 2026 19:39:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(docker):=20correct=20zitare-?= =?UTF-8?q?backend=20health=20check=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed /api/health to /health in docker-compose.macmini.yml 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 08746b5dc..8f248019a 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -586,7 +586,7 @@ services: ports: - "3007:3007" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3007/api/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3007/health"] interval: 30s timeout: 10s retries: 3