anton-kasperovich / certbot

Certbot Docker image based on Alpine 3.4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Supported tags and respective Dockerfile links

What is Certbot?

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.

How to use this image

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>.

License

Please view licence information for the software contained on this image.

Supported Docker versions

This image is officially supported on Docker version 1.11.1.

User feedback

Documentation

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.

Issues

If you have any problems with or questions about this image, please contact us through a GitHub issue.

Contribute

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.

About

Certbot Docker image based on Alpine 3.4

License:Apache License 2.0