Last active
January 24, 2020 18:51
-
-
Save rajinwonderland/c781c67988f34493eb3feca4e2672b8a to your computer and use it in GitHub Desktop.
`docker-machine` Installation on a fish shell
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
curl -L https://github.com/docker/machine/releases/download/v0.16.0/docker-machine-(uname -s)-(uname -m) >/tmp/docker-machine \ | |
&& sudo mv /tmp/docker-machine /usr/local/bin/docker-machine \ | |
&& chmod +x /usr/local/bin/docker-machine |
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
curl -L https://github.com/docker/machine/releases/download/v0.16.0/docker-machine-(uname -s)-(uname -m) >/usr/local/bin/docker-machine \ | |
&& chmod +x /usr/local/bin/docker-machine |
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
# Supported on Cygwin, Windows Subsystem for Linux and MSYS2 Shells | |
mkdir -p "$HOME/bin" \ | |
&& curl -L https://github.com/docker/machine/releases/download/v0.16.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" \ | |
&& chmod +x "$HOME/bin/docker-machine.exe" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment