fixed healthcheck

This commit is contained in:
Codex Agent
2025-12-04 21:06:25 +01:00
parent 82bfe68ce0
commit f2ba59d495

View File

@@ -148,16 +148,11 @@ services:
- dokploy-network
- photobooth-network
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8080/health"]
interval: 30s
timeout: 5s
retries: 5
start_period: 10s
healthcheck:
test: ["CMD", "nc", "-z", "localhost", "21"]
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8080/health >/dev/null 2>&1 && nc -z localhost 21"]
interval: 30s
timeout: 10s
retries: 5
start_period: 10s
restart: unless-stopped
queue: