This repository has been archived on 2021-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
mail/postfix/Dockerfile
2018-03-08 14:45:31 +00:00

20 lines
360 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
supervisor \
rsyslog \
ca-certificates \
postfix \
openssl
COPY postfix.sh /postfix.sh
COPY supervisord.conf /etc/supervisord.conf
ENTRYPOINT ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]
VOLUME "/etc/postfix/dh-params/"
EXPOSE 25 587
# Noch submission machen