This commit is contained in:
2025-05-17 13:15:09 +02:00
parent da3def10e5
commit 130de9a88b
5 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#version: '3'
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
environment:
- WEBSOCKET_ENABLED=true
- ROCKET_PORT=8001
- SIGNUPS_ALLOWED=true
- SIGNUPS_VERIFY=false
- INVITATIONS_ALLOWED=false
- ADMIN_TOKEN=553e78f3faca4aefb078ec72063d5229
- SHOW_PASSWORD_HINT=false
volumes:
- ./data:/data
ports:
- 3012:3012
- 8001:8001