Merge pull request #1401 from AaronDewes/patch-1
Add arm64 support to linux install script
This commit is contained in:
commit
418ab35ce7
|
|
@ -106,7 +106,11 @@ if ! [ "$(command -v curl)" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
DOWNLOAD_URL=${DOWNLOAD_URL:-$(curl -s ${RELEASE_URL} | grep "browser_download_url.*docker-linux-amd64.tar.gz" | cut -d : -f 2,3)}
|
if [ "$(uname -m)" = "aarch64" ]; then
|
||||||
|
DOWNLOAD_URL=${DOWNLOAD_URL:-$(curl -s ${RELEASE_URL} | grep "browser_download_url.*docker-linux-arm64.tar.gz" | cut -d : -f 2,3)}
|
||||||
|
else
|
||||||
|
DOWNLOAD_URL=${DOWNLOAD_URL:-$(curl -s ${RELEASE_URL} | grep "browser_download_url.*docker-linux-amd64.tar.gz" | cut -d : -f 2,3)}
|
||||||
|
fi
|
||||||
|
|
||||||
# Check if the Compose CLI is already installed
|
# Check if the Compose CLI is already installed
|
||||||
if [ $(is_new_cli "docker") -eq 1 ]; then
|
if [ $(is_new_cli "docker") -eq 1 ]; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue