diff --git a/build_your_own_lab/websploit/install-docker.sh b/build_your_own_lab/websploit/install-docker.sh new file mode 100644 index 0000000..5030e4d --- /dev/null +++ b/build_your_own_lab/websploit/install-docker.sh @@ -0,0 +1,5 @@ +curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - +echo 'deb [arch=amd64] https://download.docker.com/linux/debian buster stable' | sudo tee /etc/apt/sources.list.d/docker.list +apt update +apt remove docker docker-engine docker.io +apt install -y docker-ce