Vaultwarden
An alternative server implementation of the Bitwarden Client API, written in Rust and compatible with official Bitwarden clients.
References
Make directory
mkdir -p {{DOCKER_PATH_VAR}}/vaultwarden && cd {{DOCKER_PATH_VAR}}/vaultwardencompose.yml
nano compose.ymlservices: vaultwarden: image: vaultwarden/server:latest container_name: vaultwarden ports: - 127.0.0.1:8002:80 volumes: - ./vw-data/:/data/ environment: DOMAIN: "https://vw.domain.tld" # update WEBSOCKET_ENABLED: true SIGNUPS_ALLOWED: false # Flip to false after creating your account EXPERIMENTAL_CLIENT_FEATURE_FLAGS: ssh-key-vault-item,ssh-agent-v2 restart: unless-stoppedStart container
docker compose up -d