]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: Correcting check searching for docker compose plugin (#5904) (#5917)
authorShanSanear <pruskimateusz93@gmail.com>
Mon, 26 Feb 2024 21:21:43 +0000 (22:21 +0100)
committerGitHub <noreply@github.com>
Mon, 26 Feb 2024 21:21:43 +0000 (21:21 +0000)
install-paperless-ngx.sh

index ca3b309e429fb357918071afede092a64596f0eb..4e8181a5135d873002772c31d4de0320e5a924a8 100755 (executable)
@@ -56,8 +56,8 @@ if ! command -v docker &> /dev/null ; then
        exit 1
 fi
 
-if ! command -v docker compose &> /dev/null ; then
-       echo "docker compose executable not found. Is docker compose installed?"
+if ! docker compose &> /dev/null ; then
+       echo "docker compose plugin not found. Is docker compose installed?"
        exit 1
 fi