1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-06-04 23:27:34 +02:00

Use alpine versioned and defin volumes

This commit is contained in:
Tim Möhlmann 2018-12-30 16:55:18 +02:00
parent d6ba39b6a9
commit fd23e02aaa
No known key found for this signature in database
GPG Key ID: 8677988D8072E8DE

View File

@ -1,8 +1,11 @@
FROM alpine
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"]