From 17ce295c305dd13349b5d6768e0d4071c4736c06 Mon Sep 17 00:00:00 2001 From: Jan Sauer Date: Fri, 11 Oct 2019 14:34:06 +0200 Subject: [PATCH] Fix acme storage file docker mounting example --- docs/content/https/acme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/https/acme.md b/docs/content/https/acme.md index 1e3e35680..039c54dd2 100644 --- a/docs/content/https/acme.md +++ b/docs/content/https/acme.md @@ -382,7 +382,7 @@ ACME certificates can be stored in a JSON file that needs to have a `600` file m In Docker you can mount either the JSON file, or the folder containing it: ```bash -docker run -v "/my/host/acme.json:acme.json" traefik +docker run -v "/my/host/acme.json:/acme.json" traefik ``` ```bash