„bitwarden/docker-compose.yml“ hinzufügen
This commit is contained in:
parent
0181ecd0b4
commit
87df5d9f4d
1 changed files with 19 additions and 0 deletions
19
bitwarden/docker-compose.yml
Normal file
19
bitwarden/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
version: '3'
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
restart: always
|
||||
ports:
|
||||
- 80:80
|
||||
- 3012:3012
|
||||
environment:
|
||||
- WEBSOCKET_ENABLED=true
|
||||
- ADMIN_TOKEN=Insert_AdminToken
|
||||
- SIGNUPS_ALLOWED=false
|
||||
- DOMAIN=https://example.org
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- data:/data
|
||||
|
||||
volumes:
|
||||
data:
|
Loading…
Reference in a new issue