Created
May 14, 2019 15:08
-
-
Save Ebaneck/7820acccb8a5567828f36eb1dc970eb6 to your computer and use it in GitHub Desktop.
How to install docker on ubuntu-18
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-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