Initiale Version

This commit is contained in:
Marc Blatter 2026-03-24 19:48:21 +00:00
parent 2d4e682c8b
commit 34f9b33edf
1 changed files with 20 additions and 0 deletions

20
compose-vault.yml Normal file
View File

@ -0,0 +1,20 @@
# compose-vault.yml
# https://git.bizmark.cloud/marc/bizMark.git
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: unless-stopped
environment:
WEBSOCKET_ENABLED: "true"
SIGNUPS_ALLOWED: "false"
ADMIN_TOKEN: "RuthsDelikatessen-2k26"
volumes:
- /opt/vaultwarden:/data
ports:
- "8899:80" # geänderter Host-Port, Container bleibt auf 80
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:80 || exit 1"]
interval: 30s
timeout: 5s
retries: 3