From 56dc87af58c4df08d5c42361350dc1eaa6e44418 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Wed, 25 Feb 2026 16:34:22 +0100 Subject: [PATCH] fix(home-assistant): healthcheck uses /manifest.json instead of authenticated /api/ The /api/ endpoint requires authentication, causing healthcheck to always fail and spam HA logs with "invalid authentication" warnings. Co-Authored-By: Claude Opus 4.6 --- templates/home-assistant/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/home-assistant/docker-compose.yml b/templates/home-assistant/docker-compose.yml index 2313a90..a0aa905 100644 --- a/templates/home-assistant/docker-compose.yml +++ b/templates/home-assistant/docker-compose.yml @@ -22,7 +22,7 @@ services: limits: memory: 1024M healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8123/api/"] + test: ["CMD", "curl", "-sf", "http://localhost:8123/manifest.json"] interval: 30s timeout: 5s retries: 3