Skip to content

Commit

Permalink
Merge pull request #3140 from madorn/patch-1
Browse files Browse the repository at this point in the history
add brew install instructions for hyperkit
  • Loading branch information
tstromberg authored Jan 16, 2019
2 parents dde313a + e482a57 commit 00caba2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,18 @@ minikube start --vm-driver kvm
The Hyperkit driver will eventually replace the existing xhyve driver.
It is built from the minikube source tree, and uses [moby/hyperkit](https://github.com/moby/hyperkit) as a Go library.

To install the hyperkit driver:
To install the hyperkit driver via brew:


```shell
brew install docker-machine-driver-hyperkit

# docker-machine-driver-hyperkit need root owner and uid
sudo chown root:wheel /usr/local/opt/docker-machine-driver-hyperkit/bin/docker-machine-driver-hyperkit
sudo chmod u+s /usr/local/opt/docker-machine-driver-hyperkit/bin/docker-machine-driver-hyperkit
```

To install the hyperkit driver manually:

```shell
curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit \
Expand Down

0 comments on commit 00caba2

Please sign in to comment.