https://github.com/fphammerle/docker-postfix
Postfix Mail / SMTP Server on Alpine ✉️ 🐳 🐙
https://github.com/fphammerle/docker-postfix
daemon docker docker-compose mail postfix smtp
Last synced: 3 months ago
JSON representation
Postfix Mail / SMTP Server on Alpine ✉️ 🐳 🐙
- Host: GitHub
- URL: https://github.com/fphammerle/docker-postfix
- Owner: fphammerle
- License: epl-2.0
- Created: 2019-08-10T18:15:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2026-02-14T13:19:07.000Z (5 months ago)
- Last Synced: 2026-02-14T21:53:29.490Z (5 months ago)
- Topics: daemon, docker, docker-compose, mail, postfix, smtp
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/fphammerle/postfix
- Size: 248 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# postfix ✉️ 🐳
Mail Server http://www.postfix.org/documentation.html
```sh
docker run --rm -p 25:25 fphammerle/postfix
```
config docs: http://www.postfix.org/postconf.5.html
```sh
docker run --name postfix \
--volume $PWD/main.cf:/etc/postfix/main.cf:ro \
--detach --restart unless-stopped \
--security-opt=no-new-privileges \
--publish 25:25 \
fphammerle/postfix
```
Optionally enable user namespace remapping via docker daemon option `userns-remap`.