- Container functionalities
- Why use this Docker
- Preparation of the container
- Run the container
- Data persistency
- Runtime operations
- Miscellaneous and testing
This Docker is designed to manage Let's Encrypt SSL certificates based on DNS challenges.
- Let's Encrypt certificates generation by Certbot using DNS challenges,
- Automated renewal of almost expired certificates using Cron Certbot task,
- Standardized API throuh Lexicon library to insert the DNS challenge with various DNS providers,
- Centralized configuration file to maintain several certificates,
- Modification of container configuration without restart,
- Automated restart of specific containers when a certificate is renewed,
- Container built on top of Alpine Linux distribution to reduce the footprint (image size is below 125MB).
If you are reading theses lines, you certainly want to secure all your dockerized services using Let's Encrypt SSL certificates, which are free and accepted everywhere.
If you want to secure Web services through HTTPS, there is already plenty of great tools. In the Docker world, one can check traefik, or nginx-proxy + letsencrypt-nginx-proxy-companion. Basically, theses tools will allow automated and dynamic generation/renewal of SSL certificates, based on TLS or HTTP challenges, on top of a reverse proxy to encrypt everything through HTTPS.
So far so good, but you may fall in one of the following categories:
- You are in a firewalled network, and your HTTP/80 and HTTPS/443 ports are not opened to the outside world.
- You want to secure non-Web services (like LDAP, IMAP, POP, etc.) were the HTTPS protocol is of no use.
For the first case, ACME servers need to be able to access your website through HTTP (for HTTP challenges) or HTTPS (for TLS challenges) in order to validate the certificate. With a firewall these two challenges - which are widely used in HTTP proxy approaches - will not be usable: you need to ask a DNS challenge. Please note that traefik embed DNS challenges, but only for few DNS providers.
For the second case, there is no website to use TLS or HTTP challenges, and you should ask a DNS challenge. Of course you can create a "fake" website to validate the domain, and reuse the certificate on the "real" service. But it is a workaround, and you have to implement a logic to propagate the certificate, including during its renewal. Indeed, most of the non-Web services will need to be restarted each time the certificate is renewed.
The solution is a dedicated and specialized Docker service which handles the creation/renewal of Let's Encrypt certificates, and ensure their propagation in the relevant Docker services. It is the purpose of this container.
First of all, before using this container, two steps of configuration need to be done: describing all certificates to acquire and maintain, then configuring an access to your DNS zone to publish DNS challenges.
This container uses a file which must be put at /etc/letsencrypt/domains.conf
in the container. It is a simple text file which follows theses rules:
- each line represents a certificate,
- one line may contain several domains separated by a space,
- the first domain is the certificate main domain,
- each following domain on a line is included in the SAN of the certificate, allowing it to be used for several domains.
Let's take an example. Our domain is example.com
, and we want:
- a certificate for
smtp.example.com
- a certificate for
imap.example.com
+pop.example.com
- a certificate for
ldap.example.com
Then the domains.conf
will look like this:
smtp.example.com
imap.example.com pop.example.com
ldap.example.com
You need also to provide the mail which will be used to register your account on Let's Encrypt. Set the environment variable LETSENCRYPT_USER_MAIL (default: noreply@example.com)
in the container for this purpose.
When using a DNS challenge, a TXT entry must be inserted in the DNS zone which manage the certificate domain. This TXT entry must contain a unique hash calculated by Certbot, and the ACME servers will check it before delivering the certificate.
This container will do the hard work for you, thanks to the association between Certbot and Lexicon: DNS provider API will be called automatically to insert the TXT record when needed. All you have to do is to define for Lexicon the DNS provider to use, and the API access key.
Following DNS provider are supported: AWS Route53, Cloudflare, ClouDNS, CloudXNS, DigitalOcean, DNSimple, DnsMadeEasy, DNSPark, DNSPod, EasyDNS, Gandi, Glesys, GoDaddy, Linode, LuaDNS, Memset, Namecheap, Namesilo, NS1, OVH, PointHQ, PowerDNS, Rackspace, Rage4, SoftLayer, Transip, Yandex, Vultr, Zonomi.
The DNS provider is choosen by setting an environment variable passed to the container: LEXICON_PROVIDER (default: cloudflare)
.
Most of the DNS APIs requires a user and a unique access token delivered by the DNS provider. See the documentation of your provider to check how to get these (see the DNS providers list on Lexicon documentation. Once done, set the environment variables LEXICON_[PROVIDER]_USER
and LEXICON_[PROVIDER]_TOKEN
to this user/token. [PROVIDER]
must be replaced by the value in capital letters passed to the environment variable LEXICON_PROVIDER
.
For instance, if the provider is CloudFlare, the username is my_user
and the access token is my_secret_token
, following environment variables must be passed to the container:
LEXICON_PROVIDER=cloudflare
LEXICON_CLOUDFLARE_USERNAME=my_user
LEXICON_CLOUDFLARE_TOKEN=my_secret_token
Some providers (like OVH) need more specific environment variables. First, run following command to get the Lexicon help for this DNS provider:
docker run -it --rm adferrand/letsencrypt-dns lexicon ovh --help
Once done, you will see authentication parameters of the form --auth-somevar
. Theses parameters must be setted using environment variables of the form LEXICON_[PROVIDER]_SOMEVAR
.
For example with OVH, authentication parameters are --auth-entrypoint
, --auth-application-key
, --auth-application-secret
and --auth-consumer-key
. Corresponding environment variables are LEXICON_OVH_ENTRYPOINT
, LEXICON_OVH_APPLICATION_KEY
, LEXICON_OVH_APPLICATION_SECRET
and LEXICON_OVH_CONSUMER_KEY
.
Once preparation is done, the container can be run. As said, domains.conf
must be mounted in the container, and API authentication variables must be passed as environment variables to the container.
For Cloudflare, with example described during preparation, run :
docker run \
--name letsencrypt-dns \
--volume /etc/letsencrypt/domains.conf:/etc/letsencrypt/domains.conf \
--env 'LETSENCRYPT_USER_MAIL=admin@example.com' \
--env 'LEXICON_PROVIDER=cloudflare' \
--env 'LEXICON_CLOUDFLARE_USERNAME=my_user' \
--env 'LEXICON_CLOUDFLARE_TOKEN=my_secret_token' \
adferrand/letsencrypt-dns
At start, the container will look to domains.conf
and generate the certificates if needed. Then a cron task is launched twice a day to regenerate certificates if needed. The certificates are located in the container at /etc/letsencrypt/live/
.
This container declares /etc/letsencrypt
as a volume. Consequently generated certificates will not be destroyed if the container is destroyed. Upon re-creation, certificates will be available again.
If you want to share the generated certificates to the host (eg. in /var/docker-data/letsencrypt
), you can use a host mount:
docker run \
--name letsencrypt-dns \
--volume /etc/letsencrypt/domains.conf:/etc/letsencrypt/domains.conf \
--volume /var/docker-data/letsencrypt:/etc/letsencrypt \
--env 'LETSENCRYPT_USER_MAIL=admin@example.com' \
--env 'LEXICON_PROVIDER=cloudflare' \
--env 'LEXICON_CLOUDFLARE_USERNAME=my_user' \
--env 'LEXICON_CLOUDFLARE_TOKEN=my_secret_token' \
adferrand/letsencrypt-dns
If you want to share the generated certificates with other containers, mount the container volume /etc/letsencrypt
into the target containers. For example:
docker run \
--name letsencrypt-dns \
--volume /etc/letsencrypt/domains.conf:/etc/letsencrypt/domains.conf \
--volume /var/docker-data/letsencrypt:/etc/letsencrypt \
--env 'LETSENCRYPT_USER_MAIL=admin@example.com' \
--env 'LEXICON_PROVIDER=cloudflare' \
--env 'LEXICON_CLOUDFLARE_USERNAME=my_user' \
--env 'LEXICON_CLOUDFLARE_TOKEN=my_secret_token' \
adferrand/letsencrypt-dns
docker run \
--volumes-from letsencrypt-dns \
--env 'KEY_PATH=/etc/letsencrypt/live/smtp.example.com/privkey.pem' \
--env 'CERTIFICATE_PATH=/etc/letsencrypt/live/smtp.example.com/cert.pem' \
namshi/smtp
The volume /etc/letsencrypt
will be available for the SMTP container, which can use a generated certificate for its own concern (here, securing the SMTP protocol).
By default certificates files (cert.pem
, privkey.pem
, etc.) are accessible only to the user/group owning /etc/letsencrypt
, which is root by default. It means that generated certificates cannot be used by non-root processes (in other containers or on the host).
You can modify file mode of /etc/letsencrypt/archive
and /etc/letsencrypt/live
folders and their content to allow non-root processes to access the certificates. Set environment variables CERTS_DIRS_MODE (default: 0750)
and CERTS_FILES_MODE (default: 0640)
to modify directories and files mode respectivly. For example, a file mode of 0644
and directory mode of 0755
will open access to everyone.
Alternatively or cumulatively you may need to change the owner user/group of /etc/letsencrypt/archive
and /etc/letsencrypt/live
folders and their content. To do so, specify user/group name or uid/gid in the relevant environment variables: CERTS_USER_OWNER (default: root)
and CERTS_GROUP_OWNER (default: root)
.
(Warning) Certificates files permissions, introduced in container version 1.4
, will modify default permissions for certificates. Previously, /etc/letsencrypt/live
and /etc/letsencrypt/archive
were 0750
, their sub-folders where 0755
and contained files were 0644
. Now theses folders and their sub-folders are 0750
while contained files are 0640
: this should not lead to any regression, as the parent folders were of a more restrictive permission than their content, leading certs files to be unaccessible to non-root processes. However for pathological cases you will need to set environment variable CERTS_DIRS_MODE
and CERTS_FILES_MODE
appropriately.
If you want to add a new certificate, remove one, or extend existing one to other domains, you just need to modify the domains.conf
file from the host. Once saved, the container will automatically mirror the modifications in /etc/letsencrypt
volume. If new certificates need to be generated, please note that approximately 30 seconds are required for each generation before modifications are visible.
Please check the container logs to follow the operations.
As said in introduction, most of the non-Web services require a restart when the certificate is changed. And this will occur at least once each two months. To ensure correct propagation of the new certificates in your Docker services, one special entry can be added at the end of a line for the concerned certificate in domains.conf
.
This entry takes the form of autorestart-containers=container1,container2,container3
where containerX
is the name of a container running on the same Docker instance than letsencrypt-dns
.
You need also to mount the Docker socket of the host /var/run/docker.sock
in the letsencrypt-dns
container.
Once done, all specified containers will be restarted when the target certificate is renewed.
For example, we want to restart the container named smtp
when the certificate smtp.example.com
is renewed. Construct the following domains.conf
file:
smtp.example.com imap.example.com autorestart-containers=smtp
auth.example.com
Then execute following commands:
docker run \
--name letsencrypt-dns \
--volume /etc/letsencrypt/domains.conf:/etc/letsencrypt/domains.conf \
--volume /var/docker-data/letsencrypt:/etc/letsencrypt \
--volume /var/run/docker.sock:/var/run/docker.sock \
--env 'LETSENCRYPT_USER_MAIL=admin@example.com' \
--env 'LEXICON_PROVIDER=cloudflare' \
--env 'LEXICON_CLOUDFLARE_USERNAME=my_user' \
--env 'LEXICON_CLOUDFLARE_TOKEN=my_secret_token' \
adferrand/letsencrypt-dns
docker run \
--name smtp \
--volumes-from letsencrypt-dns \
--env 'KEY_PATH=/etc/letsencrypt/live/smtp.example.com/privkey.pem' \
--env 'CERTIFICATE_PATH=/etc/letsencrypt/live/smtp.example.com/cert.pem' \
namshi/smtp
If the certificate smtp.example.com
is renewed, the container named smtp
will be restarted. Renewal of auth.example.com
will not restart anything.
Restarting a container when a certificate is renewed is sufficient for all cases. However one drawback is that the target processes will stop during a little time, and consequently the services provided are not continuous. This may be ok for non critical services, but problematic for things like authentication services or database servers.
If a target process allows it, the letsencrypt-dns container can call a reload configuration command on the target container when a certificate is renewed. In this case, service is not stopped and immediatly takes into account the new config, including the new certificate. Apache2 for example (example only, as an http challenge will be a better option here) can see its configuration to be hot-reloaded by invoking the command apachectl graceful
in the target container.
To specify which command to launch on which container when a certificate is renewed, one will put at the end of the relevant line of domains.conf
a special entry which takes the form of autocmd-containers=container1:command1,container2:command2 arg2a arg2b,container3:command3 arg3a
. Comma ,
separates each container/command configuration, colon :
separates the container name from the command to launch. Commands must be executable files, located in the $PATH of the target container, or accessed by their full path.
In the case of an Apache2 server embedded in a container named my-apache
to be reloaded when certificate web.example.com
is renewed, put following entry in domains.conf
:
web.example.com autocmd-containers=my-apache:apachectl graceful
If the certificate web.example.com
is renewed, command apachectl graceful
will be invoked on container my-apache
, and the apache2 service will use the new certificate without killing any HTTP session.
(Limitations on invokable commands) The option autocmd-container
is intended to call a simple executable file with few potential arguments. It is not made to call some advanced bash script, and would likely fail if you do so. In fact, the command is not executed in a shell on the target, and variables will be resolved against the lets-encrypt container environment. If you want to operate advanced scripting, put an executable script in the target container, and use its path in autocmd-container
option.
During development it is not advised to generate certificates againt production ACME servers, as one could reach easily the weekly limit of Let's Encrypt and could not generate certificates for a certain period of time. Staging ACME servers does not have this limit. To use them, set the environment variable LETSENCRYPT_STAGING (default: false)
to true
.
You will need to wipe content of /etc/letsencrypt
volume before container re-creation when enabling or disabling staging.
Some services need the SSL key and certificate stored together in PFX format (also known as PKCS#12) whose extension is .pfx (or .p12). For this purpose one can set the container environment variable PFX_EXPORT (default: false)
to true
: in this case, the container will ensure that every certificate handled by Certbot is exported in PFX format during certificate creation, renewal or container start/restart.
The PFX certificate for a given primary domain is located in the container on /etc/letsencrypt/[DOMAIN]/cert.pks
: it contains the key, certificate and all intermediate certificates.
By default, the PFX certificates are not protected by a passphrase. You can define one using the environment variable PFX_EXPORT_PASSPHRASE
.
During a DNS challenge, a sleep must be done after TXT entry insertions in order to let DNS zone updates be propagated correctly and ensure that ACME servers will see them. Default value is 30 seconds: if this value does not suit your needs, you can modify it by setting the environment variable LEXICON_SLEEP_TIME (default: 30)
.
For debugging and maintenance purpose, you may need to start a shell in your running container. With a Docker of version 1.3.0 or higher, you can do:
docker exec -it letsencrypt-dns /bin/sh
You will obtain a shell with the standard tools of an Alpine distribution.