Created
March 31, 2021 15:23
-
-
Save dhairya137/b600a6bc26c57c8fb06ff4ca9c283b05 to your computer and use it in GitHub Desktop.
Docker full install bash script for 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 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment