[Update] Prevent update.sh from updating docker-compose under Alpine Linux (#3708)

This commit is contained in:
tunnelpr0 2020-10-18 12:31:01 +02:00 committed by GitHub
parent be0ec8efc0
commit 76bd9556c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -482,6 +482,8 @@ fi
if [[ ${NO_UPDATE_COMPOSE} == "y" ]]; then
echo -e "\e[33mNot fetching latest docker-compose, please check for updates manually!\e[0m"
elif [[ -e /etc/alpine-release ]]; then
echo -e "\e[33mNot fetching latest docker-compose, because you are using Alpine Linux without glibc support. Please update docker-compose via apk!\e[0m"
else
echo -e "\e[32mFetching new docker-compose version...\e[0m"
sleep 1