Add smtp-relay
This commit is contained in:
parent
f7131c60b4
commit
e4581f9f7a
2 changed files with 19 additions and 0 deletions
4
smtp-relay/README.md
Normal file
4
smtp-relay/README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
# smtp-relay
|
||||
|
||||
Simple postfix relay host for your Docker containers. Based on Alpine Linux.
|
||||
|
15
smtp-relay/docker-compose.yaml
Normal file
15
smtp-relay/docker-compose.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: '3'
|
||||
services:
|
||||
postfix:
|
||||
image: boky/postfix
|
||||
environment:
|
||||
- RELAYHOST=${RELAYHOST}
|
||||
- RELAYHOST_USERNAME=${RELAYHOST_USERNAME}
|
||||
- RELAYHOST_PASSWORD=${RELAYHOST_PASSWORD}
|
||||
- MASQUERADED_DOMAINS=${MASQUERADED_DOMAINS}
|
||||
networks:
|
||||
- smtp_relay
|
||||
|
||||
networks:
|
||||
smtp_relay:
|
||||
name: smtp_relay
|
Loading…
Reference in a new issue