Fix: Correcting check searching for docker compose plugin (#5904)

This commit is contained in:
Shan 2024-02-26 17:17:12 +01:00
parent 1335ab5f1b
commit ebd6a69df4

View File

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