1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-30 04:30:49 +02:00
Mailu/core/dovecot/Dockerfile

18 lines
414 B
Docker
Raw Normal View History

FROM alpine:3.8
2018-07-26 21:41:11 +02:00
RUN apk add --no-cache \
dovecot dovecot-pigeonhole-plugin dovecot-fts-lucene rspamd-client \
2018-10-17 18:48:28 +02:00
bash python3 py3-pip \
&& pip3 install --upgrade pip \
&& pip3 install jinja2 podop tenacity
COPY conf /conf
COPY start.py /start.py
EXPOSE 110/tcp 143/tcp 993/tcp 4190/tcp 2525/tcp
VOLUME ["/data", "/mail"]
CMD /start.py
2018-10-16 23:11:20 +02:00
HEALTHCHECK CMD echo QUIT|nc localhost 110|grep "Dovecot ready."