Sign inSign up

utsso/acme

By utsso

Updated 11 months ago

https://gitlab.com/utsso/acme

Image
Integration & delivery
0

1.1K

utsso/acme repository overview

How to get a cert for single domain?

docker run --rm \
    -v ./data/etc-letsencrypt:/etc/letsencrypt \
    -e ACME_USER=acme_account_ID \
    -e ACME_KEY=acme_account_HMACKEY \
    -e ACME_EMAIL=your_email \
    -e HOST_UID=$(id -u) \
    utsso/acme:latest demo.sso.utoronto.ca

How to get a cert for multiple domains?

docker run --rm \
    -v ./data/etc-letsencrypt:/etc/letsencrypt \
    -e ACME_USER=acme_account_ID \
    -e ACME_KEY=acme_account_HMACKEY \
    -e ACME_EMAIL=your_email \
    -e HOST_UID=$(id -u) \
    utsso/acme:latest d1.sso.utoronto.ca d2.sso.utoronto.ca d3.sso.utoronto.ca

How to get a cert for wildcard domain?

docker run --rm \
    -v ./data/etc-letsencrypt:/etc/letsencrypt \
    -e ACME_USER=acme_account_ID \
    -e ACME_KEY=acme_account_HMACKEY \
    -e ACME_EMAIL=your_email \
    -e HOST_UID=$(id -u) \
    utsso/acme:latest '*.sso.utoronto.ca'

Tag summary

Content type

Image

Digest

sha256:c6c5f0a81

Size

79.9 MB

Last updated

11 months ago

docker pull utsso/acme