-
-
Notifications
You must be signed in to change notification settings - Fork 62
Installing Docker
Alex Flores edited this page Apr 7, 2018
·
5 revisions
Instructions may vary depending on the Docker host's operating system. The following are for Debian / Kali
# Add GPG keys
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
# Add source repo
echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list
apt update && apt install docker-ce
# Enable at boot, if you like
systemctl start docker