fix: plane and authelia health check URLs
Some checks failed
CI/CD / syntax-check (push) Successful in 1m21s
CI/CD / deploy (push) Failing after 12m3s

- plane-web/admin: localhost:80 → 127.0.0.1:3000 (nginx listens on 3000)
- plane-space: localhost:3000 → 127.0.0.1:3000/spaces/ (node server needs basename)
- plane-api: localhost:8000/api/ → 127.0.0.1:8000/ (/ returns status OK, /api/ returns 404)
- uptime-kuma: localhost:3001 → curl -sf (wget not available in image)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jack 2026-03-22 14:50:08 +07:00
parent 9ca1177461
commit 28f8c76433

View file

@ -184,7 +184,7 @@ services:
- backend - backend
- plane-internal - plane-internal
healthcheck: healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:80/"] test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/"]
interval: 30s interval: 30s
timeout: 5s timeout: 5s
retries: 3 retries: 3
@ -201,7 +201,7 @@ services:
- backend - backend
- plane-internal - plane-internal
healthcheck: healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:80/"] test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/"]
interval: 30s interval: 30s
timeout: 5s timeout: 5s
retries: 3 retries: 3
@ -218,7 +218,7 @@ services:
- backend - backend
- plane-internal - plane-internal
healthcheck: healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:3000/"] test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/spaces/"]
interval: 30s interval: 30s
timeout: 5s timeout: 5s
retries: 3 retries: 3
@ -264,7 +264,7 @@ services:
- ADMIN_BASE_URL=https://{{ domain_plane }}/god-mode - ADMIN_BASE_URL=https://{{ domain_plane }}/god-mode
- SPACE_BASE_URL=https://{{ domain_plane }}/spaces - SPACE_BASE_URL=https://{{ domain_plane }}/spaces
healthcheck: healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8000/api/"] test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8000/"]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 5 retries: 5