add nginx example conf

This commit is contained in:
eneller
2023-12-30 15:40:00 +01:00
parent ee484249ee
commit fc27b5ebbd
7 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
'3'
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
environment:
WEBSOCKET_ENABLED: "true" # Enable WebSocket notifications.
SIGNUPS_ALLOWED: "false"
# TODO create an admin token
ADMIN_TOKEN: "abc"
volumes:
- ./vw-data:/data
ports:
- 50002:80
- 50003:3012