A Docker image for Exim, the Message Transfer Agent
699
A Docker image for Exim, the Message Transfer Agent
Base image: Alpine
Installed package: exim
Exposed ports:
25/TCP: SMTPExported volumes:
/var/log/exim: log files/var/spool/exim: mail queueRequired Docker (any):
Optional software:
Create a new container named maildata which will keep mail queue and log
volumes:
$ docker create --name maildata adegtyarev/exim
Run Exim in a container with name exim:
$ docker run --name exim --volumes-from maildata -d adegtyarev/exim
The server now should be up and ready.
In the default setup this image is configured to use the following environment variables:
RELAY_FROM_HOSTS Exim's hostlist to permit relaying from any host or IP
address that matches the list
ROUTE_LIST a string consisting of a sequence of routing rules, separated
by semicolons. Empty rules are ignored.
Alexey Degtyarev [email protected]
Content type
Image
Digest
Size
4.8 MB
Last updated
about 7 years ago
docker pull adegtyarev/exim