From 21d99a0f4813b219f8780b99e203f9190a09f20b Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Fri, 23 Jan 2026 16:23:42 -0500 Subject: [PATCH] ``` fix: Update dashboard healthcheck to use localhost with API key authentication instead of service name ``` --- docker/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 6514fe6..ac64264 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -42,7 +42,7 @@ services: networks: - homelab-network healthcheck: - test: ["CMD", "curl", "-f", "http://homelab-dashboard:7070/api/health"] + test: ["CMD", "sh", "-c", "curl -f -H \"X-API-Key: ${API_KEY:-dev-key-12345}\" http://localhost:8008/api/health"] interval: 30s timeout: 10s retries: 3