fix: 🚑 Fixed version parsing of docker

Only the first result (the major version) is relevant

Closes #6015
This commit is contained in:
Janek 2024-08-16 08:47:03 +02:00
parent 74b4097ee0
commit eb3f88fc91
No known key found for this signature in database
GPG Key ID: 2EF197E379048B6F

View File

@ -329,7 +329,7 @@ for bin in curl docker git awk sha1sum grep cut; do
done
# Check Docker Version (need at least 24.X)
docker_version=$(docker -v | grep -oP '\d+\.\d+\.\d+' | cut -d '.' -f 1)
docker_version=$(docker -v | grep -oP '\d+\.\d+\.\d+' | cut -d '.' -f 1 | head -1)
if [[ $docker_version -lt 24 ]]; then
echo -e "\e[31mCannot find Docker with a Version higher or equals 24.0.0\e[0m"