Initiale Version
This commit is contained in:
parent
2d4e682c8b
commit
34f9b33edf
|
|
@ -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
|
||||
Loading…
Reference in New Issue