postfix (0)
Published 2026-02-10 02:40:07 +00:00 by rswafford
Installation
docker pull git.atomic-homelab.com/rswafford/postfix:0sha256:840e87e7640337dc4a981e72a9429354e208d1d73bab4e2871c8a5c400a0f193Image layers
| COPY / / # buildkit |
| RUN /bin/sh -c apk --no-cache add postfix postfix-pgsql openssl bind-tools netcat-openbsd && mkdir -p /templates /etc/postfix/conf.d # buildkit |
| COPY docker-entrypoint.sh /docker-entrypoint.sh # buildkit |
| COPY templates /templates/ # buildkit |
| COPY conf.d /etc/postfix/conf.d/ # buildkit |
| ENV MAIL_CONFIG=/etc/postfix/conf.d |
| EXPOSE [25/tcp] |
| ENTRYPOINT ["/docker-entrypoint.sh"] |
| CMD ["/usr/sbin/postfix" "start-fg"] |