first commit

This commit is contained in:
2026-03-13 15:25:08 +00:00
commit 2ee0510055
2 changed files with 26 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.env
/data

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
vaultwarden:
container_name: vaultwarden
hostname: vaultwarden
image: vaultwarden/server:latest
restart: unless-stopped
networks:
nginx:
# expose:
# - 80 # Web UI
# - 443 # Web UI
ports:
- 8090:80
- 8100:443
env_file:
- .env
volumes:
- /etc/localtime:/etc/localtime:ro
- ./data:/data
networks:
nginx:
external: true