Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
/ docker-letsencrypt Public archive

Docker container for the "simp_le" Let's encrypt implementation running on Alpine Linux

License

Notifications You must be signed in to change notification settings

dokku/docker-letsencrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-letsencrypt

dokku/letsencrypt

This is a containerfile for the "simp_le" Let's encrypt implementation by zenhack (simp_le). It's running on Alpine Linux and is only around 30MB in size. It was inspired by kuba/simp_le and katta/sim_le but has a couple of improvements.

Certs are saved in /certs so you should mount a persistent volume there.

Simple run

If you only want to get some certificates, simply run the container like this:

docker run -ti -p 80:80 -v /etc/nginx/certs:/certs \
    dokku/letsencrypt -f account_key.json -f account_reg.json  \
    -f chain.pem -f cert.pem -f key.pem --email a@example.org \
    -d adminswerk.de -d test.adminswerk.de

Entrypoint Override

By default the container starts with an entrypoint-script which passes all arguments you start the container with to simp_le.py. If you want to start another application, e.g. for debugging or to build something ontop the container, you have to set the environment variable OVERRIDE. It only needs to be not null, the value doesn't matter.

docker run -ti -p 80:80 -v /etc/nginx/certs:/certs -e "OVERRIDE=1" dokku/letsencrypt sh