vaultwarden
This commit is contained in:
parent
bd4b05f3fb
commit
8971099dc2
2 changed files with 22 additions and 0 deletions
5
vaultwarden/doc.md
Normal file
5
vaultwarden/doc.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Vaultwarden
|
||||
|
||||
- Ordner `vw-data` erstellen
|
||||
- https://github.com/dani-garcia/vaultwarden
|
||||
- [Wiki](https://github.com/dani-garcia/vaultwarden/wiki)
|
||||
17
vaultwarden/docker-compose.yml
Normal file
17
vaultwarden/docker-compose.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
container_name: vaultwarden
|
||||
restart: always
|
||||
environment:
|
||||
WEBSOCKET_ENABLED: "true" # Enable WebSocket notifications.
|
||||
SIGNUP_ALLOWED: false
|
||||
YUBICO_CLIENT_ID: <redacted>
|
||||
YUBICO_SECRET_KEY: <redacted>
|
||||
ports:
|
||||
- 8888:80
|
||||
- 3012:3012
|
||||
volumes:
|
||||
- ./vw-data:/data
|
||||
Loading…
Add table
Add a link
Reference in a new issue