The objective of Certbot and the ACME protocol is to make it possible to set up an HTTPS server.
421
Dockerfile linksThis certbot image contains almost all nginx nice modules using certbot package.
docker pull wilkesystems/certbot
$ docker run -d --name certbot \
-e CERTBOT_POST_HOOK='docker nginx restart' \
-e CERTBOT_WEBROOT_PATH=/var/www/html \
-v /path/to/certs:/etc/letsencrypt \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v /var/www/html:/var/www/html \
wilkesystems/certbot \
example.org:www.example.org
-e CERTBOT_MAIL=... Set the registration E-Mail-e CERTBOT_PRE_HOOK=... Command to be run in a shell before obtaining any certificates-e CERTBOT_POST_HOOK=... Command to be run in a shell after attempting to obtain/renew certificates-e CERTBOT_RENEW_HOOK=... Command to be run in a shell once for each successfully renewed certificate-e CERTBOT_WEBROOT_PATH=... Obtain certs by placing files in a webroot directoryNew images are automatically built by each new library/debian push.
Package: certbot
The objective of Certbot, Let's Encrypt, and the ACME (Automated Certificate Management Environment) protocol is to make it possible to set up an HTTPS server and have it automatically obtain a browser-trusted certificate, without any human intervention. This is accomplished by running a certificate management agent on the web server.
This agent is used to:
This package contains the main application, including the standalone and the manual authenticators.
Content type
Image
Digest
Size
265.6 MB
Last updated
about 7 years ago
docker pull wilkesystems/certbot