chore(docker): add HEALTHCHECK to pngx-controller-ts sidecar
All checks were successful
Deploy / deploy (push) Successful in 22s

wget --spider on 127.0.0.1:8000 verifies the Tailscale
sidecar's network namespace is forwarding to the backend
(controller shares the ts container's network ns).
start_period=60s covers Tailscale auth + tailscaled boot.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Alex
2026-06-20 21:45:52 +02:00
parent 23c68f6382
commit fd6901559e

View File

@@ -17,6 +17,12 @@ services:
- NET_ADMIN
- NET_RAW
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "wget --spider -q http://127.0.0.1:8000/ || exit 1"]
interval: 30s
timeout: 5s
retries: 3
start_period: 60s
networks:
- default
- domverse