43 KiB
43 KiB
obj | website | android-id | flatpak-id |
---|---|---|---|
application | https://bitwarden.com/ | com.x8bit.bitwarden | com.bitwarden.desktop |
Bitwarden
Bitwarden is a selfhosted password manager (like KeePassXC).
Vaultwarden is a alternative Bitwarden Server implementation rewritten in Rust. Beside providing the ability to store sensitive information and passwords, bitwarden can share files and secrets securely with Bitwarden Send.
Docker Compose
version: '3.3'
services:
server:
volumes:
- './data:/data/'
ports:
- '1380:80'
image: vaultwarden/server
environment:
- ADMIN_TOKEN=TOKEN
restart: unless-stopped