Last active
February 17, 2019 19:19
-
-
Save yaroslavya/e5bd701216b6d9788a7a42e0060a8f62 to your computer and use it in GitHub Desktop.
Revisions
-
yaroslavya renamed this gist
Feb 17, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
yaroslavya created this gist
Feb 17, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # loading the docker-compose from the github repo via curl sudo curl -L "https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose # If the command docker-compose fails after installation, check your path. # You can also create a symbolic link to /usr/bin or any other directory in your path. sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose # to test execute: docker-compose --version # which should give you: "docker-compose version 1.23.2, build 1110ad01"