Last active
April 13, 2021 10:53
-
-
Save asheroto/c534637ac714868608cfe85f99c84f31 to your computer and use it in GitHub Desktop.
Install Docker on Linux simply in one go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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