20 lines
572 B
YAML
20 lines
572 B
YAML
# 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 |