denji/letsencrypt-certbot

By denji

Updated over 2 years ago

Let's Encrypt Certbot container

Image
Security
0

235

denji/letsencrypt-certbot repository overview

Usage

Set up a Certbot container

See example compose file at /alpine/docker-compose.yml.

docker-compose up -d; docker-compose logs
Register new domain
docker exec -it example_certbot_1 \
    certbot \
    certonly \
    --standalone \
    --text \
    --email [email protected] \
    --agree-tos \
    --standalone-supported-challenges http-01 \
    --domains example.com

Explanation:

docker exec -it example_certbot_1            # enter composed container
    certbot                                  # run `certbot`
    certonly                                 # we write our own configs
    --standalone                             # auth method
    --text                                   # disable ncurses interface
    --email [email protected]                # this is usually req'd
    --agree-tos                              # this is always req'd
    --standalone-supported-challenges http-01   # disable :443 check
    --domains example.com                    # the domain we are reg'ing

Tag summary

Content type

Image

Digest

sha256:9e5453c22

Size

27.4 MB

Last updated

over 2 years ago

docker pull denji/letsencrypt-certbot:s390x-alpine