Skip to content

Instantly share code, notes, and snippets.

@crappyrules
Last active October 26, 2020 02:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crappyrules/332c9693c42c6ccc121c3e01dce18e29 to your computer and use it in GitHub Desktop.
Save crappyrules/332c9693c42c6ccc121c3e01dce18e29 to your computer and use it in GitHub Desktop.
installation of docker & docker compose on ubuntu 20.04 minimal
#!/bin/bash
# this script will setup docker and docker compose on Ubuntu 20
sudo apt update
sudo apt install -y 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 focal stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install -y docker-ce
# now that we installed docker, we will move onto docker compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo usermod -aG docker ${USER}
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment