This image runs acmetool with cronjob to automatically renew certificates.
630
Deprecation notice: I'm moving to certbot as acmetool does not support ACME v2 (nor it would work with my DNS provider setup). This image is no longer maintained
This image runs acmetool with cronjob to automatically renew certificates.
You need to mount /certs into the container, and possibly your web server. It contains acmetool's state directory.
Your web server must be configured to serve /.well-known/acme-challenge/ from /certs/root/.well-known/acme-challenge/, as this is how acmetool will verify certificates.
Example usage:
sudo docker run -d --name acmetool \
-v certs:/certs \
willwill/acme-docker
To issue certificates, use docker exec:
sudo docker exec acmetool acmetool want www.example.com example.com
Following environment variables are available:
(to specify environment variable, pass -e VARIABLE=value to docker run before the image name)
Content type
Image
Digest
Size
8 MB
Last updated
about 8 years ago
docker pull willwill/acme-docker