Skip to content

Instantly share code, notes, and snippets.

@asheroto
Last active April 13, 2021 10:53
Show Gist options
  • Save asheroto/c534637ac714868608cfe85f99c84f31 to your computer and use it in GitHub Desktop.
Save asheroto/c534637ac714868608cfe85f99c84f31 to your computer and use it in GitHub Desktop.
Install Docker on Linux simply in one go
#!/bin/bash
sudo apt update
sudo apt install curl wget git -y
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker $(whoami)
rm get-docker.sh -f
sudo apt install docker-compose -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment