Skip to content

v0.1.3 pre-release

Pre-release
Pre-release
Compare
Choose a tag to compare
@robertbreker robertbreker released this 05 Apr 10:31

Installation

The installation steps are:

  1. If not done already - download the Docker Machine binary for your OS and architecture
  2. If not done already - move the binary to your PATH.
  3. Download the driver archive for your OS and architecture.
  4. Extract the archive
  5. Move the driver binary to your PATH, so it can be found by docker-machine.

On Linux with amd64 architecture this means:

$ curl -L https://github.com/docker/machine/releases/download/v0.10.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine && \
    chmod +x /tmp/docker-machine && \
    sudo cp /tmp/docker-machine /usr/local/bin/docker-machine && \
    curl -L https://github.com/xenserver/docker-machine-driver-xenserver/releases/download/v0.1.3/docker-machine-driver-xenserver_linux-amd64.tar.gz | tar -xz -C /tmp/ && \
    sudo cp /tmp/docker-machine-driver-xenserver /usr/local/bin/docker-machine-driver-xenserver