diff --git a/compose-vault.yml b/compose-vault.yml new file mode 100644 index 0000000..a1c5dbd --- /dev/null +++ b/compose-vault.yml @@ -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 \ No newline at end of file