Created
November 14, 2019 21:00
-
-
Save jake-walker/1ac39b142aeff297c1f9913c802244de to your computer and use it in GitHub Desktop.
Docker Install Script for Kali Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - | |
echo 'deb [arch=amd64] https://download.docker.com/linux/debian buster stable' > /etc/apt/sources.list.d/docker.list | |
apt-get update | |
apt-get install docker-ce -y | |
systemctl start docker | |
systemctl enable docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment