Files
docker-machine/docs/install-machine.md
Mary Anthony 1749d99b31 - Updating install docs fixes #1648
- Updating the Dockerfile to lastest
- Adding support for building all the public doc projects from machine

Signed-off-by: Mary Anthony <mary@docker.com>

Michael's comments

Signed-off-by: Mary Anthony <mary@docker.com>

Adding in comments from nathan

Signed-off-by: Mary Anthony <mary@docker.com>
2015-08-05 16:06:50 -07:00

1.5 KiB

Install Docker Machine

Docker Machine is supported on Windows, OS X, and Linux and is installable as one standalone binary. The links to the binaries for the various platforms and architectures are available at the Github Release page.

OS X and Windows

Install Machine using the Docker Toolbox using the Mac OS X installation instruction or Windows installation instructions.

On Linux

To install on Linux, do the following:

  1. Install Docker version 1.7.1 or greater:

  2. Download the Machine binary to somewhere in your PATH (for example, /usr/local/bin).

     $ curl -L https://github.com/docker/machine/releases/download/v0.4.0/docker-machine_linux-amd64 > /usr/local/bin/docker-machine
    
  3. Apply executable permissions to the binary:

     $ chmod +x /usr/local/bin/docker-machine
    
  4. Check the installation by displaying the Machine version:

     	$ docker-machine -v
     	machine version 0.4.0
    

Where to go next