peertube/compose.smtp.yml

22 lines
479 B
YAML
Raw Normal View History

2021-05-06 08:47:42 +00:00
---
version: "3.8"
services:
app:
environment:
- PEERTUBE_SMTP_DISABLE_STARTTLS
- PEERTUBE_SMTP_ENABLED
- PEERTUBE_SMTP_FROM
- PEERTUBE_SMTP_HOSTNAME
2021-05-06 09:12:23 +00:00
- PEERTUBE_SMTP_PASSWORD_FILE=/run/secrets/smtp_password
2021-05-06 08:47:42 +00:00
- PEERTUBE_SMTP_PORT
- PEERTUBE_SMTP_TLS
2021-05-06 08:52:31 +00:00
- PEERTUBE_SMTP_USERNAME
2021-05-06 08:47:42 +00:00
secrets:
- smtp_password
secrets:
smtp_password:
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
external: true