From f6995eb50621c4eb5dc4edd2f87451b997bfd173 Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Mon, 16 Dec 2019 22:36:23 +0100 Subject: [PATCH] Update env var docs including docker config --- docs/guide/configuration.rst | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/docs/guide/configuration.rst b/docs/guide/configuration.rst index 1280089..cde5cbe 100644 --- a/docs/guide/configuration.rst +++ b/docs/guide/configuration.rst @@ -166,12 +166,27 @@ a webhook that will post embedded messages to a specific channel. The url usually looks like this: ``https://discordapp.com/api/webhooks/...``` -DOCKER_BASE_URL -~~~~~~~~~~~~~~~ +DOCKER_HOST +~~~~~~~~~~~ **Default value**: ``unix://tmp/docker.sock`` -The location of the docker socket. +The socket or host of the docker service. + +DOCKER_TLS_VERIFY +~~~~~~~~~~~~~~~~~ + +If defined verify the host against a CA certificate. +Path to certs is defined in ``DOCKER_CERT_PATH`` +and can be copied or mapped into this backup container. + +DOCKER_CERT_PATH +~~~~~~~~~~~~~~~~ + +A path to a directory containing TLS certificates to use when +connecting to the Docker host. Combined with ``DOCKER_TLS_VERIFY`` +this can be used to talk to docker through TLS in cases +were we cannot map in the docker socket. Compose Labels --------------