Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbdeweygit <benjamin.m.dewey@gmail.com>2020-07-09 19:47:38 +0300
committerGitHub <noreply@github.com>2020-07-09 19:47:38 +0300
commit1697d66ba72f29a8127f10850f6b43fd1cd74873 (patch)
treec55b1b3ec54b8a03e7100ac71780fe3f9f7a41ad
parenta6a998d11bb72e8b430f88a6943a5eac781c88ec (diff)
Be more informative about reasons for using Docker (#28)
People who are considering running Certbot with Docker are probably doing so because their webserver is to be run with Docker. These changes to the README should help them to understand that doing so will require knowledge of Docker volumes and that the architectural justification for running Certbot in a separate container is the "one service per container" best practice.
-rw-r--r--tools/docker/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/docker/README.md b/tools/docker/README.md
index 197b83b9a..f4b9c6de4 100644
--- a/tools/docker/README.md
+++ b/tools/docker/README.md
@@ -1,9 +1,9 @@
Running Certbot in Docker
=========================
-Docker is an amazingly simple and quick way to obtain a certificate. However, this mode of operation is unable to install certificates or configure your webserver, because our installer plugins cannot reach your webserver from inside the Docker container.
+Docker is an amazingly simple and quick way to obtain a certificate. However, this mode of operation is unable to install certificates automatically or configure your webserver, because our installer plugins cannot reach your webserver from inside the Docker container.
-**Most users should install Certbot by following the installation instructions at https://certbot.eff.org/instructions. You should only use Docker if you are sure you know what you are doing and have a good reason to do so.**
+**Most users should install Certbot by following the installation instructions at https://certbot.eff.org/instructions. You should only use Docker if you are sure you know what you are doing (you understand [volumes](https://docs.docker.com/storage/volumes/)) and have a good reason to do so, such as following the [one service per container rule](https://docs.docker.com/config/containers/multi-service_container/).**
For more information, please read [Certbot - Running with Docker](https://certbot.eff.org/docs/install.html#running-with-docker).