17 lines
343 B
YAML
17 lines
343 B
YAML
services:
|
|
vaultwarden:
|
|
image: vaultwarden/server:latest
|
|
container_name: vaultwarden
|
|
restart: always
|
|
env_file:
|
|
- ./.env
|
|
environment:
|
|
WEBSOCKET_ENABLED: "true" # Enable WebSocket notifications.
|
|
SIGNUPS_ALLOWED: "false"
|
|
volumes:
|
|
- ./vw-data:/data
|
|
ports:
|
|
- 50002:80
|
|
- 50003:3012
|
|
|