From da276eca3c849de11c3587ff796ccaf1ace31609 Mon Sep 17 00:00:00 2001 From: jmqm Date: Mon, 31 May 2021 03:18:42 -0500 Subject: [PATCH] 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. --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0a65e61..2be4165 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -Backs up vaultwarden files and directories to `tar.xz` archives. -Can be set to run automatically. +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/). Files and directories that are backed up: - db.sqlite3 @@ -21,7 +20,7 @@ Pass `manual` to `docker run` or `docker-compose` as a `command`. ``` services: vaultwarden: - # Vaultwarden configuration here. + # Vaultwarden configuration here. backup: image: jmqm/vaultwarden_backup:latest container_name: vaultwarden_backup @@ -32,7 +31,7 @@ services: - "/etc/localtime:/etc/localtime:ro" # Container uses date from host. environment: - DELETE_AFTER=30 - - CRON_TIME=* */24 * * * # Runs every 24 hours. + - CRON_TIME=* */24 * * * # Runs at 12:00 AM. - UID=1024 - GID=100 ```