FROM alpine:latest MAINTAINER Bojan Cekrlic - https://github.com/bokysan/docker-postfix/ # See README.md for details # Set the timezone for the container, if needed. ENV TZ= # Postfix myhostname ENV HOSTNAME= # Host that relays your msgs ENV RELAYHOST= # An (optional) username for the relay server ENV RELAYHOST_USERNAME= # An (optional) login password for the relay server ENV RELAYHOST_PASSWORD= # Define relay host TLS connection level. See http://www.postfix.org/postconf.5.html#smtp_tls_security_level for details. # By default, the permissive level ("may") is used, if not defined. ENV RELAYHOST_TLS_LEVEL= # Allow domains from per Network ( default 127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16 ) ENV MYNETWORKS=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16 # Allow any sender domains ENV ALLOWED_SENDER_DOMAINS= # Attachments size. 0 means unlimited. Usually needs to be set if your relay host has an attachment size limit ENV MESSAGE_SIZE_LIMIT= # Enable additional debugging for connections to postfix ENV INBOUND_DEBUGGING= # Install supervisor, postfix RUN true && \ apk add --no-cache --update postfix ca-certificates tzdata supervisor rsyslog && \ apk add --no-cache --upgrade musl musl-utils && \ (rm "/tmp/"* 2>/dev/null || true) && (rm -rf /var/cache/apk/* 2>/dev/null || true) # Set up configuration COPY supervisord.conf /etc/supervisord.conf COPY rsyslog.conf /etc/rsyslog.conf COPY run.sh /run.sh RUN chmod +x /run.sh # Set up spool volume VOLUME [ "/var/spool/postfix", "/etc/postfix" ] # Run supervisord USER root WORKDIR /tmp EXPOSE 587 ENTRYPOINT ["/run.sh"]