wordpress/compose.mailrelay.yml

27 lines
690 B
YAML
Raw Normal View History

2020-09-26 18:31:13 +00:00
---
version: "3.8"
2020-09-26 18:31:13 +00:00
services:
app:
2020-10-23 02:06:26 +00:00
entrypoint: /docker-entrypoint.mailrelay.sh
2020-09-26 18:31:13 +00:00
environment:
- SMTP_HOST=${SMTP_HOST}
2022-03-31 10:14:25 +00:00
- SMTP_PORT=${SMTP_PORT:-25}
2020-09-27 19:27:08 +00:00
- MAIL_FROM=${MAIL_FROM}
2020-09-26 18:31:13 +00:00
configs:
- source: mstmp_conf
target: /etc/msmtprc
2020-10-23 02:06:26 +00:00
- source: entrypoint_mailrelay_conf
target: /docker-entrypoint.mailrelay.sh
2020-09-26 18:31:13 +00:00
mode: 0555
configs:
mstmp_conf:
name: ${STACK_NAME}_mstmp_conf_${MSMTP_CONF_VERSION}
file: msmtp.conf.tmpl
template_driver: golang
2020-10-23 02:06:26 +00:00
entrypoint_mailrelay_conf:
2020-09-28 22:43:13 +00:00
name: ${STACK_NAME}_entrypoint_mailrelay_${ENTRYPOINT_MAILRELAY_CONF_VERSION}
file: entrypoint.mailrelay.sh.tmpl
2020-09-26 18:31:13 +00:00
template_driver: golang