Last active
October 25, 2020 08:28
-
-
Save vmpartner/fd95d84a76b80255710707a8a26bd10f to your computer and use it in GitHub Desktop.
Easy install docker & compose on ubuntu
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
echo "Start" && \ | |
curl -fsSL https://get.docker.com -o get-docker.sh && \ | |
sh get-docker.sh && \ | |
curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \ | |
chmod +x /usr/local/bin/docker-compose && \ | |
echo "Finish" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment