Renovate Bot
b93c42f201
This PR contains the following updates: | Package | Update | Change | |---|---|---| | registry.mgrote.net/postfix | digest | `d078909` -> `1d3a194` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjE1Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Reviewed-on: #680 Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
27 lines
837 B
Django/Jinja
27 lines
837 B
Django/Jinja
version: '3.3'
|
|
services:
|
|
postfix:
|
|
image: "registry.mgrote.net/postfix:master@sha256:1d3a194ee7a9cc2b7537ce8142bd9a98dcb1890b33bf5d482eeaa8b347dc9398"
|
|
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
|