14 lines
403 B
YAML
14 lines
403 B
YAML
services:
|
|
# Vaultwarden Password Manager
|
|
vaultwarden:
|
|
image: vaultwarden/server:latest
|
|
container_name: vaultwarden
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
restart: unless-stopped
|
|
# profiles: ["core", "all"]
|
|
environment:
|
|
# This is required to allow vaultwarden to verify the TLS certificate!
|
|
- DOMAIN=https://bw.migonis.tech
|
|
volumes:
|
|
- /data:/data |