Simple Postfix MSA with SASL authentication, TLS and DKIM support
4.3K
Simple Postfix MSA with SASL authentication and DKIM support.
| Variable | Description | Type | Default value |
|---|---|---|---|
| OPENDKIM_PORT | Port for DKIM service | optional | none |
| OPENDKIM_HOST | Host for DKIM service | optional | none |
| POSTFIX_ | Customize any postfix | optional | none |
| SMTP_USER | Authentication user | optional | none |
| SMTP_PASSWORD | Authentication password | optional | none |
You should overwrite at least POSTFIX_myhostname and POSTFIX_mynetworks.
The simplest way to run the container is the following command:
docker run --detach -p 587:587 -e POSTFIX_myhostname=example.org -e POSTFIX_mynetworks=10.0.0.0/8 rsprta/postfix
Or using docker-compose.yml:
version: '3'
services:
postfix:
container_name: postfix
image: rsprta/postfix
restart: unless-stopped
environment:
- POSTFIX_myhostname=example.org
- POSTFIX_mynetworks=10.0.0.0/8
GNU General Public License v3
This package was created with Cookiecutter from cookiecutter-docker-multiarch.
Content type
Image
Digest
sha256:53fdda7b3…
Size
11.1 MB
Last updated
about 2 years ago
docker pull rsprta/postfix