From fa851ace462e6b33565f34d0409cbd838e90a39f Mon Sep 17 00:00:00 2001 From: mgeeky Date: Tue, 3 Dec 2019 12:10:32 +0100 Subject: [PATCH] Changed docker installation strategy --- linux/prepare-kali.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/linux/prepare-kali.sh b/linux/prepare-kali.sh index 5292cdf..2eee2e4 100644 --- a/linux/prepare-kali.sh +++ b/linux/prepare-kali.sh @@ -40,11 +40,12 @@ install_dotnet() { } install_docker() { - curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt- - echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list - apt update - apt-get remove -y docker docker-engine docker.io - apt-get install -y docker-ce + #curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt- + #echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list + #apt update + #apt-get remove -y docker docker-engine docker.io + #apt-get install -y docker-ce + apt install -y docker docker-compose docker run hello-world }