This image contains an installation of the Postfix mail transport agent.
Learn more about Postfix: http://www.postfix.org/
This Docker container makes it easy to get an instance of postfix up and running.
Based on Official Ubuntu Docker Image with some minor hack:
- Packaging by Packer Docker builder and Ansible provisioner in single layer
- Handle
ENTRYPOINT
with catatonit
Start Postfix:
# Pull latest image
docker pull alvistack/postfix-3.8
# Run as detach
docker run \
-itd \
--name postfix \
--publish 2525:25 \
alvistack/postfix-3.8
Success. Postfix is now available on port 2525
.
Release tags could be find from GitHub Release of this repository. Thus using these tags will ensure you are running the most up to date stable version of this image.
Version tags ended with .0.0
are rolling release rebuild by GitLab
pipeline in
weekly basis. Thus using these tags will ensure you are running the
latest packages provided by the base image project.
- Code released under Apache License 2.0
- Docs released under CC BY 4.0
- Wong Hoi Sing Edison