Last active
October 16, 2018 18:02
-
-
Save den-vasyliev/479e21b0d8ac55189a6da38f20201819 to your computer and use it in GitHub Desktop.
docker-ce debian
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
sudo apt-get update -y | |
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian \ | |
$(lsb_release -cs) \ | |
stable" | |
sudo apt-get update -y | |
sudo apt-get install docker-ce -y | |
sudo systemctl start docker | |
sudo usermod -a -G docker den | |
docker version | |
docker ps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment