Last active
April 5, 2023 08:37
-
-
Save zulonas/62681a3eb82bf4bf78f6764544f481d5 to your computer and use it in GitHub Desktop.
This file contains 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 -y && sudo apt dist-upgrade -y | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sudo sh get-docker.sh && rm get-docker.sh | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
sudo apt install python3-pip -y | |
sudo pip3 install docker-compose | |
logout # or reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment