1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-20 20:22:38 +02:00
Mailu/core/postfix/Dockerfile

23 lines
429 B
Docker
Raw Normal View History

# syntax=docker/dockerfile-upstream:1.4.3
# postfix image
FROM base
2021-11-04 15:22:12 +02:00
ARG VERSION=local
LABEL version=$VERSION
RUN set -euxo pipefail \
; apk add --no-cache cyrus-sasl-login logrotate postfix postfix-pcre rsyslog
COPY conf/ /conf/
COPY start.py /
RUN echo $VERSION >/version
EXPOSE 25/tcp 10025/tcp
HEALTHCHECK --start-period=350s CMD echo QUIT|nc localhost 25|grep "220 .* ESMTP Postfix"
VOLUME ["/queue"]
CMD /start.py