feat: added vaultwarden smtp settings

This commit is contained in:
sujiba 2024-05-23 00:54:05 +02:00
parent ef1459065c
commit aa447c22cb

View file

@ -21,6 +21,13 @@ services:
LOG_LEVEL: 'info' LOG_LEVEL: 'info'
EXTENDED_LOGGING: 'true' EXTENDED_LOGGING: 'true'
LOG_FILE: '/data/vaultwarden.log' LOG_FILE: '/data/vaultwarden.log'
# SMTP settings
SMTP_HOST: 'mx.example.com'
SMTP_PORT: '465'
SMTP_SECURITY: 'force_tls'
SMTP_FROM: 'no-reply@example.com'
SMTP_USERNAME: 'no-reply@example.com'
SMTP_PASSWORD: 'PASSWORD'
volumes: volumes:
- ./volumes/data:/data - ./volumes/data:/data
ports: ports: