Le big overhaul

This commit is contained in:
Peter Smit
2024-12-21 11:48:58 +01:00
parent bcad52afa5
commit 0b3498e8ba
11 changed files with 252 additions and 88 deletions

2
vaultwarden/.env.example Normal file
View File

@@ -0,0 +1,2 @@
VAULTWARDEN_DATA_LOCATION=
VAULTWARDEN_ADMIN_TOKEN=

View File

@@ -0,0 +1,13 @@
services:
vaultwarden:
container_name: vaultwarden
image: vaultwarden/server:1.32.6
restart: always
volumes:
- ${VAULTWARDEN_DATA_LOCATION}:/data/
environment:
- ADMIN_TOKEN=${VAULTWARDEN_ADMIN_TOKEN}
env_file:
- .env
ports:
- "8080:80"