Files
docker-compose/bitwarden/docker-compose.yml
2024-04-04 10:28:54 +02:00

24 lines
619 B
YAML

version: '3'
services:
bitwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
environment:
- WEBSOCKET_ENABLED=true
- SIGNUPS_ALLOWED=true
- DOMAIN=https://pw.sectorq.eu
- SMTP_HOST=mail.sectorq.eu
- SMTP_FROM=jaydee@sectorq.eu
- SMTP_PORT=465
- SMTP_SSL=true
- SMTP_USERNAME=jaydee@sectorq.eu
- SMTP_PASSWORD=$SMTP_PASSWORD
- ADMIN_TOKEN=$ADMIN_PASSWORD
volumes:
- /share/docker_data/bitwarden/bw-data:/data
ports:
- 8181:80
labels:
com.centurylinklabs.watchtower.enable: true