containers/postfix/Dockerfile
Stefan Harmuth b752ac0d1f
All checks were successful
Build OCI Containers / Build Containers (push) Successful in 1m8s
pgsql support for postfix + postgrey
2023-11-05 13:01:07 +01:00

13 lines
281 B
Docker

FROM debian:bookworm-slim
RUN apt-get update && \
apt-get -y upgrade && \
apt-get -y --purge autoremove && \
apt-get -y install postfix postfix-pgsql postgrey && \
apt-get -y clean
EXPOSE 25/tcp
EXPOSE 465/tcp
EXPOSE 587/tcp
CMD ["/usr/sbin/postfix", "start-fg"]