|
From: SCHLEMMER N. <Nor...@pd...> - 2025-10-27 17:29:55
|
As workaround I use the healthcheck defined by the compose file
healthcheck:
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://127.0.0.1:8080/${tracker:-issues}/"]
interval: 30s
timeout: 5s
retries: 3
start_period: 1m
now the container is "healthy"
|