mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
bb2edb6eb6
This reverts commit c787e4bdbd
.
14 lines
329 B
Docker
14 lines
329 B
Docker
FROM alpine:3.10
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
&& apk add --no-cache radicale@testing curl bash
|
|
|
|
COPY radicale.conf /radicale.conf
|
|
|
|
EXPOSE 5232/tcp
|
|
VOLUME ["/data"]
|
|
|
|
CMD radicale -f -S -C /radicale.conf
|
|
|
|
HEALTHCHECK CMD curl -f -L http://localhost:5232/ || exit 1
|