https://github.com/grmvoid/docker-postfix
🐳 Docker image for Postfix
https://github.com/grmvoid/docker-postfix
docker docker-image docker-postfix dockerfile postfix
Last synced: 2 months ago
JSON representation
🐳 Docker image for Postfix
- Host: GitHub
- URL: https://github.com/grmvoid/docker-postfix
- Owner: grmvoid
- License: mit
- Created: 2025-01-02T18:55:27.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-01-13T04:27:18.000Z (5 months ago)
- Last Synced: 2025-02-01T14:35:20.533Z (4 months ago)
- Topics: docker, docker-image, docker-postfix, dockerfile, postfix
- Language: Shell
- Homepage: https://hub.docker.com/r/grmvoid/postfix
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Quick reference
- **Image based on**:
[alpine](https://hub.docker.com/_/alpine)- **Supported architectures**:
`linux/amd64`, `linux/arm64`- **Maintained by**:
[grmvoid](https://github.com/grmvoid)- **Where to file issues**:
[https://github.com/grmvoid/docker-php/issues](https://github.com/grmvoid/docker-postfix/issues?q=)## Supported tags and respective `Dockerfile` links
- [`3.9.1`, `3.9`](https://github.com/grmvoid/docker-postfix/blob/master/3.9/Dockerfile)
## How to usage this image
### start a postfix instance
```bash
docker run --name some-postfix -d grmvoid/postfix:3.9.1
```### ... via [`docker-compose`](https://github.com/docker/compose)
Example `docker-compose.yml` for `postfix`:```yaml
version: '3.1'services:
postfix:
image: grmvoid/postfix:3.9.1
restart: always
ports:
- "25:25/tcp"
- "587:587/tcp"
```## LICENSE
View [license](https://de.postfix.org/ftpmirror/LICENSE) information for the software contained in this image.