Created
March 6, 2018 21:32
-
-
Save jorandradefig/6a2f810c2f2d873530e470aac59c6d4e to your computer and use it in GitHub Desktop.
Install Docker Compose for Ubuntu
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
| From: https://docs.docker.com/compose/install/#install-compose | |
| Download the latest version | |
| sudo curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose | |
| Apply executable permissions to the binary | |
| sudo chmod +x /usr/local/bin/docker-compose | |
| Test the installation | |
| docker-compose --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment