Source files of the container image volkerraschek/certbot https://hub.docker.com/repository/docker/volkerraschek/certbot
Go to file
CSRBot aeb33772a0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
chore(deps): update quay.io/skopeo/stable docker tag to v1.15.0
2024-03-31 16:03:56 +00:00
.drone.yml chore(deps): update quay.io/skopeo/stable docker tag to v1.15.0 2024-03-31 16:03:56 +00:00
.editorconfig Initial Commit 2021-08-31 18:37:14 +02:00
.gitattributes Initial Commit 2021-08-31 18:37:14 +02:00
.gitignore Initial Commit 2021-08-31 18:37:14 +02:00
.markdownlint.yaml Initial Commit 2021-08-31 18:37:14 +02:00
Dockerfile chore(deps): update docker.io/library/alpine docker tag to v3.19.1 2024-01-27 02:02:12 +00:00
LICENSE Initial Commit 2021-08-31 18:37:14 +02:00
Makefile fix(makefile): migrate to git.cryptic.systems 2023-06-15 16:58:55 +02:00
README.md Initial Commit 2021-08-31 18:37:14 +02:00
docker-compose.yml Initial Commit 2021-08-31 18:37:14 +02:00
manifest.tmpl fix: unsupport arm-v7 image 2023-10-25 14:07:44 +02:00
renovate.json fix(renovate): remove automerge options 2024-01-21 14:34:40 +01:00

README.md

certbot-docker

Build Status Docker Pulls

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