1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-04-15 11:47:04 +02:00
Mailu/optional/radicale/Dockerfile

14 lines
329 B
Docker
Raw Normal View History

FROM alpine:3.10
2016-11-30 14:02:36 +01:00
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk add --no-cache radicale@testing curl bash
2016-11-30 14:02:36 +01:00
COPY radicale.conf /radicale.conf
EXPOSE 5232/tcp
VOLUME ["/data"]
2016-11-30 14:02:36 +01:00
CMD radicale -f -S -C /radicale.conf
2018-10-16 21:38:12 +02:00
HEALTHCHECK CMD curl -f -L http://localhost:5232/ || exit 1