Lightning-fast, secure password management that just works.
Bunker is the password manager that gets out of your way. Built in Rust for blazing performance and iron-clad security, it's designed for developers who value speed, simplicity, and reliability.
# Install and initialize in one go
cargo install bunker
bunker init my-vault
bunker add github
# Done! Your first password is stored and encrypted.- Argon2 key derivation with vault-specific salts
- ChaCha20-Poly1305 authenticated encryption
- Zero-knowledge architecture - your data never leaves your device
- Git integration for version control and backup
- Rust-powered performance
- No cloud dependencies - everything runs locally
- Instant search across all your data
- Smart caching - unlock once, use all day
- Rust 1.70+ (install here)
- Git (for version control)
# Clone and build
git clone https://github.com/simplysabir/bunker.git
cd bunker
cargo build --release
# Initialize your first vault
./target/release/bunker init my-vault
# Add your first password
./target/release/bunker add github
# List all passwords
./target/release/bunker list
# Copy password to clipboard
./target/release/bunker copy github# Build and run with Docker Compose
docker-compose up --build
# Or build manually
docker build -t bunker .
docker run -it --rm -v $(pwd)/vaults:/app/vaults bunker init my-vault| Feature | Description | Speed |
|---|---|---|
| π Password Storage | Encrypted passwords with metadata | Instant |
| π Smart Search | Search across all fields (hidden from UI) | <100ms |
| π Clipboard Integration | Auto-clear with configurable timeout | <50ms |
| π·οΈ Rich Metadata | Usernames, notes, URLs, tags, custom fields | Instant |
| π Git Sync | Version control and backup | <1s |
| π€ Import/Export | Vault portability across devices | <2s |
| π Session Management | Unlock once, use all day | <100ms |
bunker init <vault> # Create new vault
bunker add <key> # Add password
bunker get <key> # View password
bunker copy <key> # Copy to clipboard
bunker list # List all entries
bunker search <query> # Search entries
bunker edit <key> # Edit entry
bunker delete <key> # Remove entrybunker vault use <name> # Switch vaults
bunker vault export # Export vault
bunker vault import <file> # Import vault
bunker git status # Git status
bunker git commit # Commit changes
bunker git push # Push to remote
bunker backup # Create backup
bunker restore <backup> # Restore from backupFROM rust:1.75-alpine as builder
WORKDIR /app
COPY . .
RUN cargo build --release
FROM alpine:latest
RUN apk add --no-cache git
COPY --from=builder /app/target/release/bunker /usr/local/bin/
WORKDIR /app
VOLUME ["/app/vaults"]
ENTRYPOINT ["bunker"]version: '3.8'
services:
bunker:
build: .
volumes:
- ./vaults:/app/vaults
- ~/.ssh:/root/.ssh:ro # For Git operations
environment:
- RUST_LOG=info
working_dir: /app
command: ["init", "my-vault"]target/
.git/
.gitignore
README.md
Dockerfile
docker-compose.yml
~/.bunker/
βββ config.toml # Global configuration
βββ vaults/
β βββ my-vault/
β β βββ config.toml # Vault-specific config
β β βββ entries/ # Encrypted password files
β β βββ .git/ # Git repository
β β βββ sessions/ # Session data
β βββ work-vault/
βββ sessions/ # Global sessions
BUNKER_VAULT_NAME=my-vault # Default vault
BUNKER_SESSION_TIMEOUT=86400 # Session timeout (seconds)
BUNKER_CLIPBOARD_TIMEOUT=45 # Clipboard clear timeout- Zero-knowledge encryption - Your master password never leaves your device
- Vault-specific salts - Each vault has unique cryptographic parameters
- Authenticated encryption - ChaCha20-Poly1305 prevents tampering
- Secure memory handling - Zeroize sensitive data after use
- Git integration - Version control and audit trail
- Session isolation - Vaults are completely isolated
We love contributions! Here's how to get started:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
git clone https://github.com/simplysabir/bunker.git
cd bunker
cargo build
cargo test
cargo fmtThis project is licensed under the MIT License - see the LICENSE file for details.
Ready to secure your digital life? π
cargo install bunker
bunker init my-vaultQuestions? Open an issue or join our discussions!