Skip to content

Instantly share code, notes, and snippets.

@jake-walker
Created November 14, 2019 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jake-walker/1ac39b142aeff297c1f9913c802244de to your computer and use it in GitHub Desktop.
Save jake-walker/1ac39b142aeff297c1f9913c802244de to your computer and use it in GitHub Desktop.
Docker Install Script for Kali Linux
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