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, a OS X virtualization system, and docker-machine-xhyve you can now have docker use the native OS X hypervisor to run containers.
No more dealing with virtualbox shenanigans!
Uninstall Docker Toolbox:
$ sh -c "$(curl -fsSl https://raw.githubusercontent.com/docker/toolbox/master/osx/uninstall.sh)"And remove existing caches
$ sudo rm -rf ~/.dockerTo install:
$ sh -c "$(curl -fsSL https://gist.github.com/astrohckr/0d5303b787a449cd564f/raw/install.sh)"To uninstall:
$ sh -c "$(curl -fsSL https://gist.github.com/astrohckr/0d5303b787a449cd564f/raw/uninstall.sh)"Based on this