Last active
April 14, 2017 17:10
-
-
Save iolufemi/cf37843ccaeff881d3e7d6d0711ea6db to your computer and use it in GitHub Desktop.
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
// Generate Certificate | |
docker run -it --rm -p 443:443 -p 80:80 --name letsencrypt \ | |
-v "/Users/iolufemi/workspace/letsencrypt:/etc/letsencrypt" \ | |
-v "/Users/iolufemi/workspace/letsencrypt/:/var/lib/letsencrypt" \ | |
quay.io/letsencrypt/letsencrypt:latest -a manual -d paybutton.prod1flutterwave.co \ | |
--server https://acme-v01.api.letsencrypt.org/directory auth | |
// Renew Certificate | |
docker run -it --rm -p 443:443 -p 80:80 --name letsencrypt \ | |
-v "/Users/iolufemi/workspace/letsencrypt:/etc/letsencrypt" \ | |
-v "/Users/iolufemi/workspace/letsencrypt/:/var/lib/letsencrypt" \ | |
quay.io/letsencrypt/letsencrypt:latest -a manual \ | |
--server https://acme-v01.api.letsencrypt.org/directory auth |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment