24 lines
567 B
YAML
24 lines
567 B
YAML
---
|
|
services:
|
|
app:
|
|
environment:
|
|
- MAILER_SENDER
|
|
- MAIL_LINK_HOST=${DOMAIN}
|
|
- MAIL_LINK_PROTO=https
|
|
- SMTP_ADDRESS
|
|
- SMTP_AUTHENTICATION=plain
|
|
- SMTP_DOMAIN
|
|
- SMTP_ENABLE_STARTTLS_AUTO=true
|
|
- SMTP_OPENSSL_VERIFY_MODE=none
|
|
- SMTP_PORT
|
|
- SMTP_USER_NAME
|
|
- TIMEOVERFLOW_SMTP_PASSWORD_FILE=/run/secrets/smtp_password
|
|
- TIMEOVERLOW_SMTP_ENABLED
|
|
secrets:
|
|
- smtp_password
|
|
|
|
secrets:
|
|
smtp_password:
|
|
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
|
|
external: true
|