Added SMTP mail support variables to bookstack.yaml
More info can be seen here https://www.bookstackapp.com/docs/admin/email-webhooks/#email-configuration/
This commit is contained in:
parent
55d92e6913
commit
0d2584e44e
1 changed files with 9 additions and 0 deletions
|
|
@ -23,6 +23,15 @@ services:
|
|||
# You will need to set up an authentication provider as described at https://www.bookstackapp.com/docs/admin/third-party-auth/.
|
||||
- GITHUB_APP_ID=${GITHUB_APP_ID}
|
||||
- GITHUB_APP_SECRET=${GITHUB_APP_SECRET}
|
||||
# SMTP Mail variables as per https://www.bookstackapp.com/docs/admin/email-webhooks/#email-configuration/.
|
||||
- MAIL_DRIVER=${MAIL_DRIVER:-smtp}
|
||||
- MAIL_HOST=${MAIL_HOST}
|
||||
- MAIL_PORT=${MAIL_PORT:-587}
|
||||
- MAIL_ENCRYPTION=${MAIL_ENCRYPTION:-tls}
|
||||
- MAIL_USERNAME=${MAIL_USERNAME}
|
||||
- MAIL_PASSWORD=${MAIL_PASSWORD}
|
||||
- MAIL_FROM=${MAIL_FROM}
|
||||
- MAIL_FROM_NAME=${MAIL_FROM_NAME:-BookStack}
|
||||
volumes:
|
||||
- 'bookstack-data:/config'
|
||||
healthcheck:
|
||||
|
|
|
|||
Loading…
Reference in a new issue