Skip to content

Instantly share code, notes, and snippets.

@rajinwonderland
Last active January 24, 2020 18:51
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 rajinwonderland/c781c67988f34493eb3feca4e2672b8a to your computer and use it in GitHub Desktop.
Save rajinwonderland/c781c67988f34493eb3feca4e2672b8a to your computer and use it in GitHub Desktop.
`docker-machine` Installation on a fish shell
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
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
# 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