From bcef9a9ce4cc14f9af286f3d7a9297ba4d5a6976 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 10 Aug 2018 11:13:20 -0700 Subject: [PATCH] Remove flock env --- Dockerfile.raspbian | 1 - Readme.md | 1 - 2 files changed, 2 deletions(-) diff --git a/Dockerfile.raspbian b/Dockerfile.raspbian index 64bbeec..2a8e190 100644 --- a/Dockerfile.raspbian +++ b/Dockerfile.raspbian @@ -36,7 +36,6 @@ ENV BACKUP_DEST="file:///backups" ENV BACKUP_NAME="backup" ENV PATH_TO_BACKUP="/data" ENV PASSPHRASE="Correct.Horse.Battery.Staple" -ENV FLOCK_WAIT=60 # Cron schedules ENV CRON_SCHEDULE="" diff --git a/Readme.md b/Readme.md index 789ae23..0a0d63e 100644 --- a/Readme.md +++ b/Readme.md @@ -15,7 +15,6 @@ Mount any directories you'd like to back up as a volume and run |BACKUP_NAME|backup|What the name for the backup should be. If using a single store for multiple backups, make sure this is unique| |CLEANUP_COMMAND| |An optional duplicity command to execute after backups to clean older ones out (eg. "remove-all-but-n-full 2")| |CRON_SCHEDULE| |If you want to periodic incremental backups on a schedule, provide it here. By default we just backup once and exit| -|FLOCK_WAIT|60|Seconds to wait for a lock before skipping a backup| |FTP_PASSWORD| |Used to provide passwords for some backends. May not work without an attached TTY| |FULL_CRON_SCHEDULE| |If you want to periodic full backups on a schedule, provide it here. This requires an incremental cron schedule too| |GPG_KEY_ID| |The ID of the key you wish to use. See [Encryption](#encryption) section below|