Docker Compose - Portainer Stack v2 - SMTP env Setup #1325
redtripleAAA
started this conversation in
General
Replies: 1 comment
-
Hello @ansred, Just add ---
version: "2"
services:
bitwardenrs:
image: bitwardenrs/server:latest
container_name: bitwardenrs
volumes:
- /volume1/docker/BitWardenRS/config:/data/
ports:
- 8100:80
restart: unless-stopped
environment:
- TZ=Europe/Amsterdam
- SMTP_HOST=smtp.domain.tld
- SMTP_FROM=bitwarden@domain.tld
- SMTP_PORT=587
- SMTP_SSL=true
- SMTP_USERNAME=username
- SMTP_PASSWORD=password This works with all the options mentioned in this file: https://github.com/dani-garcia/bitwarden_rs/blob/master/.env.template |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Greetings,
Can you someone please help modify the following docker compose file to include SMTP environment variables please
The setup is working fine on Docker Synology NAS, but having trouble to configure the SMTP settings for the instance.
Link: https://github.com/dani-garcia/bitwarden_rs/wiki/SMTP-configuration
Or do you recommend to run the above just normal and then modify the config.json file manually?
https://github.com/dani-garcia/bitwarden_rs/wiki/Configuration-overview
Thanks
Beta Was this translation helpful? Give feedback.
All reactions