mirror of
https://github.com/certbot/certbot.git
synced 2026-04-15 22:20:28 -04:00
docker: use quay.io, move quick start section to the top
This commit is contained in:
parent
b6b86e44ce
commit
9a0073fff5
1 changed files with 18 additions and 17 deletions
|
|
@ -2,6 +2,24 @@
|
|||
Using the Let's Encrypt client
|
||||
==============================
|
||||
|
||||
Quick start
|
||||
===========
|
||||
|
||||
Using docker you can quickly get yourself a testing cert. From the
|
||||
server that the domain your requesting a cert for resolves to,
|
||||
download docker, and issue the following command
|
||||
|
||||
.. code-block:: shell
|
||||
|
||||
sudo docker run -it --rm -p 443:443 --name letsencrypt \
|
||||
-v "/etc/letsenecrypt:/etc/letsencrypt" \
|
||||
-v "/var/lib/letsenecrypt:/var/lib/letsencrypt" \
|
||||
quay.io/letsencrypt/lets-encrypt-preview:latest
|
||||
|
||||
And follow the instructions. Your new cert will be available in
|
||||
``/etc/letsencrypt/certs``.
|
||||
|
||||
|
||||
Prerequisites
|
||||
=============
|
||||
|
||||
|
|
@ -47,23 +65,6 @@ Mac OSX
|
|||
sudo ./bootstrap/mac.sh
|
||||
|
||||
|
||||
Quick Usage
|
||||
===========
|
||||
|
||||
Using docker you can quickly get yourself a testing cert. From the
|
||||
server that the domain your requesting a cert for resolves to,
|
||||
download docker, and issue the following command
|
||||
|
||||
.. code-block:: shell
|
||||
|
||||
sudo docker run -it --rm -p 443:443 \
|
||||
-v "/etc/letsenecrypt:/etc/letsencrypt" \
|
||||
-v "/var/lib/letsenecrypt:/var/lib/letsencrypt" \
|
||||
letsencrypt/lets-encrypt-preview
|
||||
|
||||
And follow the instructions. Your new cert will be available in
|
||||
``/etc/letsencrypt/certs``.
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue