grmvoid/postfix

By grmvoid

Updated about 2 months ago

Postfix is a mail transfer agent (MTA) that routes and delivers electronic mail.

Image
Integration & Delivery

22

Quick reference

Supported tags and respective Dockerfile links

How to usage this image

start a postfix instance
docker run --name some-postfix -d grmvoid/postfix:3.9.1
... via docker-compose

Example docker-compose.yml for postfix:

version: '3.1'

services:
    postfix:
        image: grmvoid/postfix:3.9.1
        restart: always
        ports:
            - "25:25/tcp"
            - "587:587/tcp"

LICENSE

View license information for the software contained in this image.

Docker Pull Command

docker pull grmvoid/postfix