cyber-security-resources/build_your_own_lab/websploit/install-docker.sh

6 lines
281 B
Bash
Raw Normal View History

2020-07-02 19:11:37 +00:00
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