Skip to content

Instantly share code, notes, and snippets.

@Ebaneck
Created May 14, 2019 15:08
Show Gist options
  • Select an option

  • Save Ebaneck/7820acccb8a5567828f36eb1dc970eb6 to your computer and use it in GitHub Desktop.

Select an option

Save Ebaneck/7820acccb8a5567828f36eb1dc970eb6 to your computer and use it in GitHub Desktop.
How to install docker on ubuntu-18
- sudo apt-get 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-get update
- sudo apt-get install docker-ce
- sudo usermod -aG docker ${USER}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment