Ensure your self-hosted password manager data is always safe with this dedicated backup solution for Vaultwarden. Running as a Docker container, it automates the entire backup process, giving you peace of mind. It leverages the power of rclone to securely upload your backups to a vast number of cloud storage providers, including Google Drive, OneDrive, S3, and many more.
This tool is highly configurable and offers a comprehensive set of features to protect your critical data:
config.json, RSA keys, attachments, and sends folders.zip or 7z archive for security and convenience.services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
volumes:
- ./vw-data:/data
ports:
- 8080:80
vaultwarden-backup:
image: ttionya/vaultwarden-backup:latest
container_name: vaultwarden-backup
restart: always
environment:
- RCLONE_REMOTE_NAME=BitwardenBackup
- RCLONE_REMOTE_DIR=/VaultwardenBackup/
- CRON=5 * * * *
- ZIP_ENABLE=TRUE
- ZIP_PASSWORD=${ZIP_PASSWORD}
- BACKUP_KEEP_DAYS=30
- TIMEZONE=UTC
volumes:
- ./vw-data:/data
- ./rclone-data:/config
depends_on:
- vaultwardenZIP_PASSWORD=your_super_secret_passwordAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago