1
0
mirror of https://github.com/xzeldon/vwdump.git synced 2025-06-28 21:38:14 +03:00

Minor fixes to README

- Add programs that can open and extract tar.xz archives.
- Fixed spacing in docker-compose example.
- Further clarification for CRON_TIME in docker-compose example.
This commit is contained in:
jmqm 2021-05-31 03:18:42 -05:00 committed by GitHub
parent 20e2a129f7
commit da276eca3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,4 @@
Backs up vaultwarden files and directories to `tar.xz` archives. Backs up vaultwarden files and directories to `tar.xz` archives automatically. `tar.xz` archives can be opened using data compression programs like [7-Zip](https://www.7-zip.org/) and [WinRAR](https://www.win-rar.com/).
Can be set to run automatically.
Files and directories that are backed up: Files and directories that are backed up:
- db.sqlite3 - db.sqlite3
@ -32,7 +31,7 @@ services:
- "/etc/localtime:/etc/localtime:ro" # Container uses date from host. - "/etc/localtime:/etc/localtime:ro" # Container uses date from host.
environment: environment:
- DELETE_AFTER=30 - DELETE_AFTER=30
- CRON_TIME=* */24 * * * # Runs every 24 hours. - CRON_TIME=* */24 * * * # Runs at 12:00 AM.
- UID=1024 - UID=1024
- GID=100 - GID=100
``` ```