Skip to content

Instantly share code, notes, and snippets.

@FredLackeyOfficial
Last active April 11, 2020 14:16
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 FredLackeyOfficial/d993aa52fbd2795bf39e9226db572dba to your computer and use it in GitHub Desktop.
Save FredLackeyOfficial/d993aa52fbd2795bf39e9226db572dba to your computer and use it in GitHub Desktop.
Setup Docker on Linux
#!/bin/bash
# curl https://gist.githubusercontent.com/FredLackeyOfficial/d993aa52fbd2795bf39e9226db572dba/raw/setup-docker.sh | sudo bash
# bash <(curl -Ls https://gist.githubusercontent.com/FredLackeyOfficial/d993aa52fbd2795bf39e9226db572dba/raw/setup-docker.sh)
sudo apt remove docker docker-engine docker.io
sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt update
sudo apt -y install docker-ce
sudo apt -y install docker-compose
sudo usermod -aG docker $USER
sudo systemctl enable docker
sudo docker run hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment