您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
12 行
384 B
Docker
12 行
384 B
Docker
FROM alpine:3.8
|
|
|
|
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
|
|
|
|
VOLUME ["/traefik"]
|
|
VOLUME ["/output"]
|
|
|
|
COPY run.sh /
|
|
ENTRYPOINT ["/run.sh"]
|