forked from coop-cloud/vikunja
Adds all the smtp options, and moves the env variables to the right compose file Reviewed-on: coop-cloud/vikunja#5 Reviewed-by: kolaente <coopcloud-git@kolaente.de> Co-authored-by: Apfelwurm <Alexander@volzit.de> Co-committed-by: Apfelwurm <Alexander@volzit.de>
23 lines
525 B
YAML
23 lines
525 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
environment:
|
|
- VIKUNJA_MAILER_ENABLED
|
|
- VIKUNJA_MAILER_HOST
|
|
- VIKUNJA_MAILER_PORT
|
|
- VIKUNJA_MAILER_AUTHTYPE
|
|
- VIKUNJA_MAILER_SKIPTLSVERIFY
|
|
- VIKUNJA_MAILER_FORCESSL
|
|
- VIKUNJA_MAILER_USERNAME
|
|
- VIKUNJA_MAILER_PASSWORD_FILE=/run/secrets/smtp_password
|
|
- VIKUNJA_MAILER_FROMEMAIL
|
|
|
|
secrets:
|
|
- smtp_password
|
|
|
|
secrets:
|
|
smtp_password:
|
|
external: true
|
|
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
|