From 6625f8962a48c2b3bce7a19ced64317cfc1bf02d Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Sun, 6 Jun 2021 18:02:23 -0400 Subject: [PATCH] Simplify installation command The installation for docker is currently three separate commands, but it can be a single command if the user simply pipes to the sh interpreter directly. I know there are some who object to piping to sh from a URL, but the current method has no security benefit over piping directly to sh. --- docs/setup.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/setup.rst b/docs/setup.rst index 42ef6759a..de5eff55f 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -116,9 +116,7 @@ performs all the steps described in :ref:`setup-docker_hub` automatically. .. code:: shell-session - $ wget https://raw.githubusercontent.com/jonaswinkler/paperless-ng/master/install-paperless-ng.sh - $ chmod +x install-paperless-ng.sh - $ ./install-paperless-ng.sh + $ curl -L https://raw.githubusercontent.com/jonaswinkler/paperless-ng/master/install-paperless-ng.sh | sh .. _setup-docker_hub: