24 lines
423 B
YAML
24 lines
423 B
YAML
---
|
|
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
secrets:
|
|
- db_password
|
|
- form_secret
|
|
- macaroon_secret_key
|
|
- registration_shared_secret
|
|
- smtp_password
|
|
environment:
|
|
- SMTP_APP_NAME
|
|
- SMTP_ENABLED
|
|
- SMTP_FROM
|
|
- SMTP_HOST
|
|
- SMTP_PORT
|
|
- SMTP_USER
|
|
|
|
secrets:
|
|
smtp_password:
|
|
external: true
|
|
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
|