FIX: Changed all .yml to .yaml in orded to have the same way
This commit is contained in:
16
vaultwarden/docker-compose.yaml
Normal file
16
vaultwarden/docker-compose.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
container_name: vaultwarden
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
DOMAIN: "${DOMAIN}"
|
||||
volumes:
|
||||
- ${PATH_TO_DATA}:/data
|
||||
ports:
|
||||
- 8033:80
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost/ || exit 1"]
|
||||
interval: 1m
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
Reference in New Issue
Block a user