Skip to content

Commit

Permalink
Merge pull request #441 from NicolasGeraud/patch-1
Browse files Browse the repository at this point in the history
mount acme folder instead of file
  • Loading branch information
vdemeester committed Jun 23, 2016
2 parents 7e1ceb9 + f446cac commit 8e561d9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/toml.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,13 @@
email = "test@traefik.io"

# File used for certificates storage.
# WARNING, if you use Traefik in Docker, don't forget to mount this file as a volume.
# WARNING, if you use Traefik in Docker, you have 2 options:
# - create a file on your host and mount it has a volume
# storageFile = "acme.json"
# $ docker run -v "/my/host/acme.json:acme.json" traefik
# - mount the folder containing the file has a volume
# storageFile = "/etc/traefik/acme/acme.json"
# $ docker run -v "/my/host/acme:/etc/traefik/acme" traefik
#
# Required
#
Expand Down

0 comments on commit 8e561d9

Please sign in to comment.