From 45d672739e13c4bfaebe0111b983e8fcbce6827b Mon Sep 17 00:00:00 2001 From: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com> Date: Fri, 29 Jan 2021 17:05:44 +0300 Subject: [PATCH] [Ubuntu] Revert hardcoded docker-compose version (#2588) --- images/linux/scripts/installers/docker-compose.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/images/linux/scripts/installers/docker-compose.sh b/images/linux/scripts/installers/docker-compose.sh index 82ecaaa0b..cc6dc6c31 100644 --- a/images/linux/scripts/installers/docker-compose.sh +++ b/images/linux/scripts/installers/docker-compose.sh @@ -3,14 +3,9 @@ ## File: docker-compose.sh ## Desc: Installs Docker Compose ################################################################################ -source $HELPER_SCRIPTS/os.sh # Install latest docker-compose from releases URL=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | jq -r '.assets[].browser_download_url | select(endswith("docker-compose-Linux-x86_64"))') -if isUbuntu16 || isUbuntu18 ; then - # https://github.com/docker/compose/issues/8048 - URL="https://github.com/docker/compose/releases/download/1.27.4/docker-compose-Linux-x86_64" -fi curl -L $URL -o /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose