initial commit

This commit is contained in:
LinuxSquare 2024-01-07 23:03:55 +01:00
commit b34282fc59
2 changed files with 23 additions and 0 deletions

8
config.json Normal file
View file

@ -0,0 +1,8 @@
{
"network": {
"name": "noveria"
},
"container": {
"name": "vaultwarden"
}
}

15
docker-compose.yml Normal file
View file

@ -0,0 +1,15 @@
version: '3'
services:
vaultwarden_server:
image: vaultwarden/server:latest
restart: unless-stopped
volumes:
- ./data:/data/
environment:
- DOMAIN=https://vault.noveria.org
- ADMIN_TOKEN=tbd
networks:
default:
external: true
name: noveria