2024-12-19 01:36:27 -05:00
|
|
|
FROM alpine:3
|
|
|
|
|
|
|
|
RUN apk add --update --no-cache \
|
|
|
|
bash \
|
|
|
|
nano \
|
|
|
|
curl \
|
2024-12-19 22:32:42 -05:00
|
|
|
bind-tools \
|
2024-12-19 01:36:27 -05:00
|
|
|
postfix \
|
|
|
|
postfix-ldap \
|
|
|
|
postfix-pcre \
|
|
|
|
postfix-policyd-spf-perl \
|
|
|
|
ca-certificates
|
|
|
|
|
|
|
|
RUN update-ca-certificates && \
|
|
|
|
mkdir /cert && \
|
2024-12-19 22:32:42 -05:00
|
|
|
mkdir /dh && \
|
|
|
|
chown 100:101 /cert && \
|
|
|
|
chown 100:101 /dh
|
2024-12-19 01:36:27 -05:00
|
|
|
|
2024-12-19 22:32:42 -05:00
|
|
|
COPY --chown=root:root start.sh /
|
|
|
|
COPY --chown=root:root config/ /config/
|
|
|
|
COPY --chown=root:root templates/ /templates/
|
|
|
|
|
|
|
|
RUN chown -R 100:101 /var/lib/postfix && \
|
|
|
|
chmod 750 /var/lib/postfix
|
2024-12-19 01:36:27 -05:00
|
|
|
|
|
|
|
VOLUME /cert
|
2024-12-19 22:32:42 -05:00
|
|
|
VOLUME /dh
|
2024-12-19 01:36:27 -05:00
|
|
|
VOLUME /var/spool/postfix
|
|
|
|
|
|
|
|
EXPOSE 10025/tcp
|
|
|
|
EXPOSE 10465/tcp
|
|
|
|
|
|
|
|
USER root
|
|
|
|
|
|
|
|
CMD ["/start.sh"]
|