From af26022835cdb428e004d2bac472ad40530cefc0 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Sun, 22 Nov 2020 18:17:56 +0100 Subject: [PATCH] stable instead of edge --- debian-software | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian-software b/debian-software index 0cb560a..f71f3f3 100755 --- a/debian-software +++ b/debian-software @@ -646,10 +646,10 @@ fi install_docker () { if [[ $distribution == groovy || $distribution == focal || $distribution == bionic ]]; then -echo "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/ubuntu focal edge" > \ +echo "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/ubuntu focal stable" > \ /etc/apt/sources.list.d/docker.list else -echo "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/debian buster edge" >\ +echo "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/debian buster stable" >\ /etc/apt/sources.list.d/docker.list fi curl -fsSL "https://download.docker.com/linux/debian/gpg" | apt-key add -qq - > /dev/null 2>&1