Source files of the container image volkerraschek/certbot
https://hub.docker.com/repository/docker/volkerraschek/certbot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
continuous-integration/drone/push Build is passing
Details
|
4 hours ago | |
---|---|---|
.drone.yml | 4 hours ago | |
.editorconfig | 2 years ago | |
.gitattributes | 2 years ago | |
.gitignore | 2 years ago | |
.markdownlint.yaml | 2 years ago | |
Dockerfile | 3 weeks ago | |
LICENSE | 2 years ago | |
Makefile | 11 months ago | |
README.md | 2 years ago | |
docker-compose.yml | 2 years ago | |
manifest.tmpl | 2 years ago | |
renovate.json | 1 year ago |
README.md
certbot-docker
This project contains all sources to build the container image
docker.io/volkerraschek/certbot
. The primary goal of the image is to run
certbot inside a container to support distributions which does not deploy a
newer version of certbot.
Usage
The certbot binary is defined as entrypoint. Here is an example how to get the
help
menue from certbot.
docker run \
--rm \
--volume="/etc/letsencrypt:/etc/letsencrypt:rw" \
volkerraschek/certbot-docker:latest \
help
If you have existing certificates, you can renew your certificates with renew --noninteractive
.
Here the example.
docker run \
--rm \
--volume="/etc/letsencrypt:/etc/letsencrypt:rw" \
volkerraschek/certbot-docker:latest \
renew --noninteractive
Alternatively you can use a docker-compose.yml
.
version: "3"
services:
certbot:
container_name: certbot
# certbot command which should be executed
command: renew --noninteractive
image: volkerraschek/certbot-docker:latest
volumes:
- /etc/letsencrypt:/etc/letsencrypt
Build image manually
To build the images manually check out the
repository with git
and use
the make
command to build the container images.
make container-image/build