initial commit
This commit is contained in:
commit
b34282fc59
2 changed files with 23 additions and 0 deletions
8
config.json
Normal file
8
config.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"network": {
|
||||
"name": "noveria"
|
||||
},
|
||||
"container": {
|
||||
"name": "vaultwarden"
|
||||
}
|
||||
}
|
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal 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
|
Loading…
Reference in a new issue