mirror of
https://github.com/traefik/traefik.git
synced 2025-11-21 02:31:16 +01:00
1.2 KiB
1.2 KiB
CLI
The Traefik Command Line {: .subtitle }
General
traefik [command] [--flag=flag_argument]
Available commands:
version: Print versionstoreconfig: Store the static Traefik configuration into a Key-value stores. Please refer to theStore Traefik configuration(TODO: add doc and link) section to get documentation on it.healthcheck: Calls Traefik/pingto check health.
Each command can have additional flags.
All those flags will be displayed with:
traefik [command] --help
Each command is described at the beginning of the help section:
traefik --help
# or
docker run traefik[:version] --help
# ex: docker run traefik:1.5 --help
Command: healthcheck
Checks the health of Traefik.
Its exit status is 0 if Traefik is healthy and 1 if it is unhealthy.
This can be used with Docker HEALTHCHECK instruction or any other health check orchestration mechanism.
!!! note
The ping endpoint must be enabled to allow the healthcheck command to call /ping.
traefik healthcheck
OK: http://:8082/ping