mirror of
https://github.com/xzeldon/vwdump.git
synced 2025-06-28 07:38:15 +03:00
23 lines
687 B
Markdown
23 lines
687 B
Markdown
# bitwarden_rs Backup
|
|
---
|
|
|
|
Docker Containers for bitwarden_rs Backup.
|
|
|
|
## Usage
|
|
```sh
|
|
docker run -d --restart=always --name bitwarden_backup --volumes-from=bitwarden registry.gitlab.com/1o/bitwarden_rs-backup/bw_backup
|
|
```
|
|
|
|
Example for hourly backups
|
|
```
|
|
docker run -d --restart=always --name bitwarden_backup --volumes-from=bitwarden -e CRON_TIME="0 * * * *" registry.gitlab.com/1o/bitwarden_rs-backup/bw_backup:latest
|
|
```
|
|
|
|
## Environment variables
|
|
| ENV | Description |
|
|
| ----- | ----- |
|
|
| DB_FILE | Path to the Bitwarden sqlite3 database |
|
|
| BACKUP_FILE | Path to the desired backup location |
|
|
| CRON_TIME | Cronjob format "Minute Hour Day_of_month Month_of_year Day_of_week Year" |
|
|
|