Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions services/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1401,6 +1401,14 @@ services:
- "--tracing.addinternals"
- "--tracing.otlp=true"
- "--tracing.otlp.http=true"
healthcheck:
# NOTE: this healthcheck to check if traefik is up and running must be run on the ping entrypoint defined in command!
test: traefik healthcheck --ping --ping.entryPoint=ping --entryPoints.ping.address=:9082
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
start_interval: 1s
volumes:
# So that Traefik can listen to the Docker events
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
Loading