Skip to content

Instantly share code, notes, and snippets.

@capi1O
Last active March 18, 2019 14:52
Show Gist options
  • Save capi1O/43c7533b4c3b854495416a1e607fc5bf to your computer and use it in GitHub Desktop.
Save capi1O/43c7533b4c3b854495416a1e607fc5bf to your computer and use it in GitHub Desktop.
docker setup on ubuntu
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