## What this? So one of the painful points of using `docker` on OS X is that you need to run a virtualbox VM, which often suffers from performance issues. With [xhyve](https://github.com/mist64/xhyve), a OS X virtualization system, and [docker-machine-xhyve](https://github.com/zchee/docker-machine-driver-xhyve) you can now have `docker` use the native OS X hypervisor to run containers. No more dealing with virtualbox shenanigans! ## Requirements - [homebrew](http://brew.sh) ## Before you begin Uninstall Docker Toolbox: ```sh $ sh -c "$(curl -fsSl https://raw.githubusercontent.com/docker/toolbox/master/osx/uninstall.sh)" ``` And remove existing caches ```sh $ sudo rm -rf ~/.docker ``` ## Usage To install: ```sh $ sh -c "$(curl -fsSL https://gist.github.com/astrohckr/0d5303b787a449cd564f/raw/install.sh)" ``` To uninstall: ```sh $ sh -c "$(curl -fsSL https://gist.github.com/astrohckr/0d5303b787a449cd564f/raw/uninstall.sh)" ``` ## Credits Based on [this](http://cavaliercoder.com/blog/update-etc-hosts-for-docker-machine.html)