mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-03 00:33:05 +02:00
24 lines
619 B
YAML
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 |