Skip to content

Instantly share code, notes, and snippets.

@SiddheshNan
Created April 6, 2020 12:43
Show Gist options
  • Save SiddheshNan/fcdbbd8130e6327790e419e02c7df723 to your computer and use it in GitHub Desktop.
Save SiddheshNan/fcdbbd8130e6327790e419e02c7df723 to your computer and use it in GitHub Desktop.
sudo apt update -y
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
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
sudo apt install docker-ce -y
sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment