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.
9 lines
340 B
Docker
9 lines
340 B
Docker
6 years ago
|
FROM alpine
|
||
|
|
||
|
RUN apk --no-cache add inotify-tools jq openssl util-linux bash docker
|
||
|
# while not strictly documented, this script seems to always(?) support previous acme.json versions too
|
||
|
RUN wget https://raw.githubusercontent.com/containous/traefik/master/contrib/scripts/dumpcerts.sh -O dumpcerts.sh
|
||
|
|
||
|
COPY run.sh /
|
||
|
ENTRYPOINT ["/run.sh"]
|