From 51a8298f2a48e43cfcf40664640cb82dc9f328d1 Mon Sep 17 00:00:00 2001 From: Boris Bera Date: Tue, 2 Jul 2024 21:15:00 -0400 Subject: [PATCH] doc(lockfile): Document `--lockfile-path` flag --- docs/pages/cli/general.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/pages/cli/general.md b/docs/pages/cli/general.md index 9fa16eb..e9fad29 100644 --- a/docs/pages/cli/general.md +++ b/docs/pages/cli/general.md @@ -34,3 +34,11 @@ With `--restic-bin` you can specify to run a specific restic binary. This can be ```bash autorestic --restic-bin /some/path/to/my/custom/restic/binary ``` + +## `--lockfile-path` + +Specify the path for the lockfile used by `autorestic`. If omitted, this will default to `.autorestic.lock.yml` next to the loaded config file. + +```bash +autorestic --lockfile-path /path/to/my/.autorestic.lock.yml +```