v0.1.3 pre-release
Pre-release
Pre-release
Installation
The installation steps are:
- If not done already - download the Docker Machine binary for your OS and architecture
- If not done already - move the binary to your PATH.
- Download the driver archive for your OS and architecture.
- Extract the archive
- 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