From 9a0073fff53f7f2ea04de944dfbf46db76eb2bc3 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Wed, 6 May 2015 09:33:56 +0000 Subject: [PATCH] docker: use quay.io, move quick start section to the top --- docs/using.rst | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/docs/using.rst b/docs/using.rst index 39cbd99a9..a27c82103 100644 --- a/docs/using.rst +++ b/docs/using.rst @@ -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 ============