mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 08:18:33 +02:00
22 lines
557 B
YAML
22 lines
557 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 |