A minimal postfix server based on alpine with postgresql. Configure it by mounting volumes.
267
Because there is no official image of postfix, I build a simple image for my own needs.
Here is the Dockerfile
FROM alpine:latest
RUN apk --no-cache add postfix postfix-pgsql
EXPOSE 25 587
CMD ["postfix", "start-fg"]
Content type
Image
Digest
sha256:c838a0a29…
Size
8.2 MB
Last updated
about 2 years ago
docker pull mardiros/postfix