Skip to content

Instantly share code, notes, and snippets.

@IsaEs
Last active February 8, 2019 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IsaEs/f54fe6e3dd4aaac1e178ca8a88e05835 to your computer and use it in GitHub Desktop.
Save IsaEs/f54fe6e3dd4aaac1e178ca8a88e05835 to your computer and use it in GitHub Desktop.
Install Docker on Ubuntu 18.04
sudo apt update
sudo apt install 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 bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install docker-ce
sudo systemctl status docker
sudo usermod -aG docker ${USER}
su - ${USER}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment