From 4573f6ec1390cb5ee84e26e248bb705e224a6e82 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:15:04 +0100 Subject: [PATCH] feat(web): add /health endpoints to all web apps Add health check endpoints for Docker container monitoring: - calendar-web - clock-web - contacts-web - manacore-web - manadeck-web - nutriphi-web - picture-web - presi-web - storage-web - zitare-web Also update todo-web docker-compose health check to use /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 54ced258a..17f4935e7 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://127.0.0.1:5188/"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:5188/health"] interval: 30s timeout: 10s retries: 3