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:
@@ -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/.
|
# 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_ID=${GITHUB_APP_ID}
|
||||||
- GITHUB_APP_SECRET=${GITHUB_APP_SECRET}
|
- 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:
|
volumes:
|
||||||
- 'bookstack-data:/config'
|
- 'bookstack-data:/config'
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|||||||
Reference in New Issue
Block a user