From: Quinn Casey Date: Mon, 28 Feb 2022 01:02:00 +0000 (-0800) Subject: Fix typo in `extending.rst` X-Git-Tag: ngx-1.6.0-rc1~32^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F170%2Fhead;p=thirdparty%2Fpaperless-ngx.git Fix typo in `extending.rst` ``` unknown shorthand flag: 'r' in -restart See 'docker run --help'. ``` I think this should be `--restart` --- diff --git a/docs/extending.rst b/docs/extending.rst index f51ecc3a7d..31617bbea1 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -51,7 +51,7 @@ To do the setup you need to perform the steps from the following chapters in a c .. code:: shell-session - docker run -d -p 6379:6379 -restart unless-stopped redis:latest + docker run -d -p 6379:6379 --restart unless-stopped redis:latest 6. Install the python dependencies by performing in the src/ directory. .. code:: shell-session