From 54acde2bd0b16a1ba95fb26572883c798abfc148 Mon Sep 17 00:00:00 2001 From: Matt Dorn Date: Wed, 19 Sep 2018 15:19:05 -0500 Subject: [PATCH] add brew install instructions for hyperkit add brew install instructions for hyperkit --- docs/drivers.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/drivers.md b/docs/drivers.md index 56c1f450da..0474ddb8bc 100644 --- a/docs/drivers.md +++ b/docs/drivers.md @@ -85,7 +85,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](http://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 docker-machine-driver-hyperkit https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit \