Skip to content

Instantly share code, notes, and snippets.

@dhairya137
Created March 31, 2021 15:23
Show Gist options
  • Save dhairya137/b600a6bc26c57c8fb06ff4ca9c283b05 to your computer and use it in GitHub Desktop.
Save dhairya137/b600a6bc26c57c8fb06ff4ca9c283b05 to your computer and use it in GitHub Desktop.
Docker full install bash script for ubuntu
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