postfix/Dockerfile

21 lines
333 B
Docker
Raw Permalink Normal View History

2023-09-26 13:57:45 +00:00
FROM docker.io/thallian/confd-env:3.18-3.1.5.0
2019-02-18 13:48:21 +00:00
RUN apk add --no-cache \
postfix \
2021-08-23 13:20:57 +00:00
postfix-pgsql \
2019-02-18 13:48:21 +00:00
openssl \
libstdc++ \
2022-10-31 12:38:08 +00:00
libmilter \
icu-data-full
2019-02-18 13:48:21 +00:00
RUN addgroup -g 2222 access
RUN addgroup postfix access
2016-07-06 09:42:10 +00:00
2016-07-06 12:14:32 +00:00
RUN chown root /var/spool/postfix/
RUN chown root /var/spool/postfix/pid
2016-07-06 09:42:10 +00:00
EXPOSE 25 587
ADD /rootfs /
2021-08-24 08:15:36 +00:00