mirror of
https://github.com/vxcontrol/rancher-letsencrypt.git
synced 2026-07-20 20:16:03 -04:00
2a91bcf147
* Adds a new required "certificate name" parameter (backward compatible): When there is an existing certificate by that name it will be overwritten with a renewed certificate * fullchain.pem and privatekey.pem are now stored in a Volume under /etc/letsencrypt/production/certificates/. This is until we find a better way to share the private key with other services.
14 lines
301 B
Docker
14 lines
301 B
Docker
FROM alpine:3.3
|
|
MAINTAINER Jan Broer <jan@festplatte.eu.org>
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
ADD build/rancher-letsencrypt-linux-amd64 /usr/bin/rancher-letsencrypt
|
|
|
|
RUN chmod +x /usr/bin/rancher-letsencrypt
|
|
|
|
VOLUME /etc/letsencrypt
|
|
|
|
ENV DEBUG=true
|
|
|
|
ENTRYPOINT ["/usr/bin/rancher-letsencrypt"] |