Forked from shaposhnikoff/gist:61538b67cdc8da9c60abc6407ef71b68
Created
December 20, 2016 17:35
-
-
Save iolufemi/1abbe4f0072d868e8e4a4e63319d27e7 to your computer and use it in GitHub Desktop.
letsencrypt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run --rm --publish 80:80 --publish 443:443 --name letsencrypt \ | |
--volume "/tmp/letsencrypt/etc/:/etc/letsencrypt" \ | |
--volume "/tmp/letsencrypt/var/:/var/lib/letsencrypt" \ | |
quay.io/letsencrypt/letsencrypt:latest certonly --standalone \ | |
-d domain.name -d www.domain.name --agree-tos --email [email protected] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment