Browse Source

Add arm64 support to linux install script

Signed-off-by: Aaron Dewes <[email protected]>
Aaron Dewes 4 years ago
parent
commit
1bc0e3c831
1 changed files with 5 additions and 1 deletions
  1. 5 1
      scripts/install/install_linux.sh

+ 5 - 1
scripts/install/install_linux.sh

@@ -106,7 +106,11 @@ if ! [ "$(command -v curl)" ]; then
 	exit 1
 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
 if [ $(is_new_cli "docker") -eq 1 ]; then