mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
Only works for me with port 80 and 443 forwarded
For the docker client to work correctly I needed to forward both ports 443 and 80. I will take a closer look on how this is supposed to work.
This commit is contained in:
parent
c39bc12b18
commit
3c2ea0c878
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ to, `install Docker`_, then issue the following command:
|
|||
|
||||
.. code-block:: shell
|
||||
|
||||
sudo docker run -it --rm -p 443:443 --name letsencrypt \
|
||||
sudo docker run -it --rm -p 443:443 -p 80:80 --name letsencrypt \
|
||||
-v "/etc/letsencrypt:/etc/letsencrypt" \
|
||||
-v "/var/lib/letsencrypt:/var/lib/letsencrypt" \
|
||||
quay.io/letsencrypt/letsencrypt:latest auth
|
||||
|
|
|
|||
Loading…
Reference in a new issue