Skip to content

Instantly share code, notes, and snippets.

@vmpartner
Last active October 25, 2020 08:28
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 vmpartner/fd95d84a76b80255710707a8a26bd10f to your computer and use it in GitHub Desktop.
Save vmpartner/fd95d84a76b80255710707a8a26bd10f to your computer and use it in GitHub Desktop.
Easy install docker & compose on ubuntu
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