From 8914d18c9db8e3960a8a4f55894d3dd51c0519f0 Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Sun, 30 Aug 2015 20:16:17 -0700 Subject: [PATCH] Update README.md --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/README.md b/README.md index c548f4c815..1b76916745 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,35 @@ Documentation for Windows [is available here](https://docs.docker.com/windows/st Toolbox is currently unavailable for Linux; To get started with Docker on Linux, please follow the Linux [Getting Started Guide](https://docs.docker.com/linux/started/). +## Building the Docker Toolbox + +Toolbox installers are built using Docker, so you'll need a Docker host set up. For example, using [Docker Machine](https://github.com/docker/machine): + +``` +$ docker-machine create -d virtualbox toolbox +$ eval "$(docker-machine env toolbox)" +``` + +Then, to build the Toolbox for both platforms: + +``` +make +``` + +Build for a specific platform: + +``` +make osx +``` + +or + +``` +make windows +``` + +The resulting installers will be in the `dist` directory. + ## Frequently Asked Questions **Do I have to install VirtualBox?**