Skip to content

v0.2.1

Choose a tag to compare

@zchee zchee released this 12 Jan 13:51
· 181 commits to master since this release
v0.2.1

v0.2.1 (2016-01-12)

Full Changelog

Installation

  1. At the first, Download the latest docker-machine binary file.
    See https://github.com/docker/machine/releases.
  2. Download the docker-machine-driver-xhyve binary file, And move the binary to your $PATH directory.
  3. Change binary owner and uid to root:wheel. Currently need root permission.
    but, DO NOT NEED sudo. That's wrong sudo docker-machine create -d xhyve ...

e.g.,

$ curl -L https://github.com/zchee/docker-machine-driver-xhyve/releases/download/v0.2.1/docker-machine-driver-xhyve > /usr/local/bin/docker-machine-driver-xhyve
$ chmod +x /usr/local/bin/docker-machine-driver-xhyve
$ sudo chown root:wheel /usr/local/bin/docker-machine-driver-xhyve
$ sudo chmod u+s /usr/local/bin/docker-machine-driver-xhyve

Features

Add wait for SSH

Add wait for available SSH login when to start and restart commands.

Misc

  • Fix folder structure. Thanks @saljam.

Auto-generated Change Log

Closed issues:

  • make docker-machine-driver-xhyve go gettable #49
  • Might want to re-release a binary #45
  • Build isn't including the updated --memory-size flags? #40

Merged pull requests:

  • Bump version to 0.2.1 #58 (zchee)
  • Add wait for SSH when (Re)Start #57 (zchee)
  • Update vendor for docker/docker and docker/machine #56 (zchee)
  • Fix Makefile for develop #55 (zchee)
  • make main binary go installable #53 (saljam)