From 403a44d85997586ec44b439901bcb48c45bc0c36 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 5 Mar 2017 23:46:43 +0200 Subject: [PATCH] Change docker install method in autoinstall.sh --- scripts/autoinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/autoinstall.sh b/scripts/autoinstall.sh index c079500..ff0b8ec 100755 --- a/scripts/autoinstall.sh +++ b/scripts/autoinstall.sh @@ -5,7 +5,7 @@ docker --version if [ "$?" -ne 0 ] then echo "Installing docker..." - apt install docker -y + curl -fsSL https://get.docker.com/ | sh fi echo "Checking if docker-compose is installed..."