From 3100b44d04648d5b890947cda82dd09562b76a30 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Thu, 6 Aug 2020 08:24:16 +0200 Subject: [PATCH] Improve Docker installation support for Linux Mint https://github.com/armbian/build/issues/2136 --- compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.sh b/compile.sh index 0bc6fac39..3ad5c0d55 100755 --- a/compile.sh +++ b/compile.sh @@ -152,7 +152,7 @@ if [[ "${1}" == docker && -f /etc/debian_version && -z "$(command -v docker)" ]] codename=$(lsb_release -sc) codeid=$(lsb_release -is | awk '{print tolower($0)}') [[ "${codeid}" == "linuxmint" && "${codename}" == "debbie" ]] && codename="buster" && codeid="debian" - [[ "${codename}" == "focal" ]] && codename="bionic" + [[ "${codename}" == "focal" || "${codename}" == "ulyana" ]] && codename="bionic" && codeid="ubuntu" display_alert "Docker not installed." "Installing" "Info" echo "deb [arch=amd64] https://download.docker.com/linux/${codeid} ${codename} edge" > /etc/apt/sources.list.d/docker.list