Initial commit

This commit is contained in:
Lucas
2025-11-07 17:45:11 +00:00
commit bc1c7c2053
3 changed files with 20 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

3
app-public.env Normal file
View File

@@ -0,0 +1,3 @@
WEBSOCKET_ENABLED=true
ADMIN_TOKEN=
BW_DEFAULT_LOCALE=fr

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
vaultwarden-interstices:
image: vaultwarden/server:latest
container_name: vaultwarden-interstices
restart: always
volumes:
- ./vw-data:/data
env_file:
- app.env
networks:
- reverse-proxy
networks:
reverse-proxy:
external: true