Michael Grote
5a0830ffc5
Reviewed-on: #592 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
27 lines
761 B
Django/Jinja
27 lines
761 B
Django/Jinja
version: '3.3'
|
|
services:
|
|
postfix:
|
|
image: registry.mgrote.net/postfix:master
|
|
container_name: mail-relay
|
|
restart: always
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|
|
ports:
|
|
- 1025:25
|
|
environment:
|
|
SMTP_SERVER: smtp.strato.de
|
|
SMTP_USERNAME: info@mgrote.net
|
|
SMTP_PASSWORD: {{ lookup('keepass', 'strato_smtp_password', 'password') }}
|
|
SERVER_HOSTNAME: mgrote.net
|
|
# DEBUG: "yes" # literal
|
|
ALWAYS_ADD_MISSING_HEADERS: "no" # literal
|
|
# LOG_SUBJECT: "yes" # literal
|
|
INET_PROTOCOL: ipv4
|
|
SMTP_GENERIC_MAP: "/.*/ info@mgrote.net"
|
|
networks:
|
|
- mail-relay
|
|
|
|
######## Networks ########
|
|
networks:
|
|
mail-relay:
|
|
external: true
|