Source repo for Docker's Documentation
Go to file
Nathan LeClaire 0c412148c3 Merge pull request #564 from londoncalling/docs-add-uninstall
added uninstall instructions to Toolbox docs
2016-09-15 17:26:50 -07:00
LICENSE creating license folder. 2015-08-04 14:06:07 -07:00
docs added uninstall instructions to Toolbox docs 2016-09-15 17:20:34 -07:00
osx Merge pull request #552 from bbodenmiller/patch-2 2016-08-18 11:25:29 -07:00
script Fix Circle timeout due to no output 2016-03-14 15:14:36 -07:00
windows Merge pull request #552 from bbodenmiller/patch-2 2016-08-18 11:25:29 -07:00
.dockerignore More efficient .dockerignore 2015-08-28 15:40:08 -07:00
.gitignore More efficient .dockerignore 2015-08-28 15:40:08 -07:00
CONTRIBUTING.md instructions for .scpt diff 2015-09-08 22:29:27 -07:00
Dockerfile.osx Bump to 1.12.1 2016-08-18 16:58:13 -07:00
Dockerfile.windows Bump to 1.12.1 2016-08-18 16:58:13 -07:00
Jenkinsfile Add docs checking Jenkinsfile 2016-08-22 12:25:51 +10:00
MAINTAINERS update maintainers file for parsing 2015-12-04 17:31:39 +01:00
Makefile Start by creating a Docker Toolbox menu item 2016-02-02 11:29:40 -08:00
README.md Added documentation pertaining to VT-X virtualization being enabled when installing Toolbox 2016-04-29 20:13:59 -07:00
ROADMAP.md Remove non-maintained files. 2015-09-11 11:34:02 -07:00
circle.yml Revise Circle config again slightly to automatically pass tests 2016-03-14 14:41:56 -07:00

README.md

Docker Toolbox

docker toolbox logo

The Docker Toolbox installs everything you need to get started with Docker on Mac OS X and Windows. It includes the Docker client, Compose, Machine, Kitematic, and VirtualBox.

Installation and documentation

Documentation for Mac is available here.

Documentation for Windows is available here.

Note: Some Windows and Mac computers may not have VT-X enabled by default. It is required for VirtualBox. To check if VT-X is enabled on Windows follow this guide here. To enable VT-X on Windows, please see the guide here. To enable VT-X on Intel-based Macs, refer to this Apple guide here. Also note that if the Virtual Machine was created before enabling VT-X it can be necessary to remove and reinstall the VM for Docker Toolbox to work.

Toolbox is currently unavailable for Linux; To get started with Docker on Linux, please follow the Linux Getting Started Guide.

Building the Docker Toolbox

Toolbox installers are built using Docker, so you'll need a Docker host set up. For example, using 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?

No, you can deselect VirtualBox during installation. It is bundled in case you want to have a working environment for free.