-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
33 lines (33 loc) · 1.05 KB
/
docker-compose.yaml
File metadata and controls
33 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
######## ARQUIVO docker-compose.yml ##################
# Reference: https://github.com/dani-garcia/vaultwarden/blob/main/.env.template
version: '3'
services:
cofre:
image: vaultwarden/server:latest
container_name: vaultwarden
volumes:
- vaultwarden-data:/data/
ports:
- "8000:80"
restart: unless-stopped
environment:
- DOMAIN=https://cofre.empresa.com.br
- SENDS_ALLOWED=true
- DISABLE_ICON_DOWNLOAD=false
- SIGNUPS_ALLOWED=true
- SIGNUPS_DOMAINS_WHITELIST=citrait.com.br,example.net
- ORG_CREATION_USERS=luciano@citrait.com.br,fulano@gmail.com
- INVITATIONS_ALLOWED=true
- INVITATION_ORG_NAME=Minha Empresa
- ORG_GROUPS_ENABLED=true
- SMTP_HOST=smtp.gmail.com
- SMTP_FROM=notificacoes@empresa.com.br
- SMTP_FROM_NAME=Cofre de Senhas
- SMTP_SECURITY=starttls
- SMTP_PORT=587
- SMTP_USERNAME=notificacoes@empresa.com.br
- SMTP_PASSWORD=senhaSegura
- SMTP_AUTH_MECHANISM=Plain
- SMTP_DEBUG=false
volumes:
vaultwarden-data: