An open API service indexing awesome lists of open source software.

https://github.com/fjctp/docker-letsencrypt

letsencrypt + nginx in Docker
https://github.com/fjctp/docker-letsencrypt

Last synced: about 2 months ago
JSON representation

letsencrypt + nginx in Docker

Awesome Lists containing this project

README

        

# docker-letsencrypt
This image has certbot and ngnix built-in, so getting a SSL certificate is simple.

## Get a new SSL certificate
```
docker run -it --rm \
-v {SSL}:/etc/letsencrypt \
-p 80:80 \
-p 443:443 \
fjctp/letsencrypt \
certonly \
--standalone \
--non-interactive \
--agree-tos \
-m {[email protected]} \
-d {YOUR_DOMAIN}
```
The SSL certificate will be located at `{SSL}/live/{YOUR_DOMAIN}`