From ac164c622c32587fc669b03cd9117b3355f90cc7 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Tue, 27 Jan 2026 15:04:20 +0100 Subject: [PATCH] fix(docker): correct presi-backend health check path The health endpoint is at /api/v1/health, not /api/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 2c90ad967..ad1c3df36 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -439,7 +439,7 @@ services: ports: - "3008:3008" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3008/api/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3008/api/v1/health"] interval: 30s timeout: 10s retries: 3