You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
362 B
19 lines
362 B
---
|
|
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
secrets:
|
|
- smtp_password
|
|
environment:
|
|
- SMTP_HOST=${SMTP_HOST}
|
|
- SMTP_PORT=${SMTP_PORT:-25}
|
|
- SMTP_AUTH=${SMTP_AUTH}
|
|
- SMTP_TLS=${SMTP_TLS}
|
|
- MAIL_FROM=${MAIL_FROM}
|
|
|
|
secrets:
|
|
smtp_password:
|
|
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
|
|
external: true
|