1
0
mirror of https://github.com/xzeldon/vwdump.git synced 2025-07-15 21:54:41 +03:00

initial commit

This commit is contained in:
10
2018-11-16 01:39:51 +01:00
commit bd9987a124
5 changed files with 97 additions and 0 deletions

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# bitwarden_rs Backup
---
Docker Containers for bitwarden_rs Backup.
## Usage
```sh
docker run --name bitwarden_backup --volumes-from=bitwarden registry.gitlab.com/1o/bitwarden_rs-backup:bw-backup
```
Example for hourly backups
```
docker run --name bitwarden_backup --volumes-from=bitwarden -e CRON_TIME="0 * * * *" registry.gitlab.com/1o/bitwarden_rs-backup:bw-backup
```
## 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" |