Last active
August 25, 2019 12:08
-
-
Save milnomada/ba29b95512abadb2c92b43d449dd9e0e to your computer and use it in GitHub Desktop.
Install docker in Ubuntu 16.04
This file contains hidden or 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
# Install docker Ubuntu 16.04 | |
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable" | |
sudo apt-get update | |
apt-cache search docker-ce | |
sudo apt-get install -y docker-ce | |
sudo systemctl status docker | |
# Run without sudo | |
sudo usermod -aG docker ${USER} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment