Last active
March 18, 2019 14:52
-
-
Save capi1O/43c7533b4c3b854495416a1e607fc5bf to your computer and use it in GitHub Desktop.
docker setup on ubuntu
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
sudo apt 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 -y "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | |
sudo apt install -y docker-ce | |
sudo usermod -aG docker $(whoami) | |
# logout and log back in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment