Certbot is a fully-featured, extensible client for the Let's Encrypt CA (or any other CA that speaks the ACME protocol) that can automate the tasks of obtaining certificates and configuring webservers to use them. This client runs on Unix-based operating systems.
Until May 2016, Certbot was named simply letsencrypt
or letsencrypt-auto
,
depending on install method. Instructions on the Internet, and some pieces of the
software, may still refer to this older name.
The easiest way how to run Certbot image is as follow:
$ docker run --rm -it \
-p 80:80 -p 443:443 \
-v <store-path>:/etc/letsencrypt
--net=<your-network-name> \
adop/certbot:VERSION <command>
Where command
is certbot
command.
Example:
certbot certonly --standalone -d ${DOMAIN_NAME} --text --register-unsafely-without-email --agree-tos"
after the above, the Certbot will request SSL certificates for the $DOMAIN_NAME
and save it to <store-path>
.
Please view licence information for the software contained on this image.
This image is officially supported on Docker version 1.11.1.
Documentation for this image is available in the letsencrypt.
Additional documentaion can be found under the docker-library/docs
GitHub repo. Be sure to familiarize yourself with the repository's README.md
file before attempting a pull request.
If you have any problems with or questions about this image, please contact us through a GitHub issue.
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.