```
Some checks failed
Tests / Backend Tests (Python) (3.10) (push) Has been cancelled
Tests / Backend Tests (Python) (3.11) (push) Has been cancelled
Tests / Backend Tests (Python) (3.12) (push) Has been cancelled
Tests / Frontend Tests (JS) (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / All Tests Passed (push) Has been cancelled

fix: Update dashboard healthcheck to use localhost with API key authentication instead of service name
```
This commit is contained in:
Bruno Charest 2026-01-23 16:23:42 -05:00
parent 8affa0f8b7
commit 21d99a0f48

View File

@ -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