certbot with nginx support, in a container. Updated daily.
10K+
certbot with nginx support in a Docker container
Example docker run:
docker run -d -e CERTBOT_DNS_PLUGIN=certbot-dns-cloudflare -v ./nginx-conf:/etc/nginx docker.askiiart.net/askiiart/certbot-nginx certbot --version
Example docker-compose.yml:
version: '3.7'
services:
hugo:
image: docker.askiiart.net/askiiart/certbot-nginx
environment:
- CERTBOT_DNS_PLUGIN=certbot-dns-cloudflare
volumes:
- ./nginx-conf:/etc/nginx
command: certbot --version
To add a DNS plugin, set the CERTBOT_DNS_PLUGIN environment variable to the name of the plugin to install. Plugins list here.
| Variable | Description | Default |
|---|---|---|
| CERTBOT_DNS_PLUGIN | The certbot dns plugin to use | none |
docker build .Content type
Image
Digest
sha256:15a9898c2…
Size
30.5 MB
Last updated
about 1 month ago
docker pull askiiart/certbot-nginx