From 42b900b9b2825264e4b1be886afaf9f9f609d0c1 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Sat, 16 Dec 2017 13:29:05 +0100 Subject: [PATCH] doc(docker): HealthCheck labels. --- docs/configuration/backends/docker.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/configuration/backends/docker.md b/docs/configuration/backends/docker.md index c6a3efc9b..fe5f0dafe 100644 --- a/docs/configuration/backends/docker.md +++ b/docs/configuration/backends/docker.md @@ -158,6 +158,9 @@ Labels can be used on containers to override default behaviour. | `traefik.weight=10` | Assign this weight to the container | | `traefik.backend=foo` | Give the name `foo` to the generated backend for this container. | | `traefik.backend.circuitbreaker.expression=EXPR` | Create a [circuit breaker](/basics/#backends) to be used against the backend | +| `traefik.backend.healthcheck.path=/health` | Enable health check for the backend, hitting the container at `path`. | +| `traefik.backend.healthcheck.port=8080` | Allow to use a different port for the health check. | +| `traefik.backend.healthcheck.interval=1s` | Define the health check interval. | | `traefik.backend.loadbalancer.method=drr` | Override the default `wrr` load balancer algorithm | | `traefik.backend.loadbalancer.stickiness=true` | Enable backend sticky sessions | | `traefik.backend.loadbalancer.stickiness.cookieName=NAME` | Manually set the cookie name for sticky sessions |