]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix typo in `extending.rst` 170/head
authorQuinn Casey <quinn@quinncasey.com>
Mon, 28 Feb 2022 01:02:00 +0000 (17:02 -0800)
committerGitHub <noreply@github.com>
Mon, 28 Feb 2022 01:02:00 +0000 (17:02 -0800)
```
unknown shorthand flag: 'r' in -restart
See 'docker run --help'.
```

I think this should be `--restart`

docs/extending.rst

index f51ecc3a7db0348e58bbdb2b75198f58e35c92a9..31617bbea111154205e5fa461b8e7a74de04a31c 100644 (file)
@@ -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