Home » Docker » Install Docker Toolbox In Windows

Install Docker Toolbox In Windows

Install Docker Toolbox In Windows

In this article, I will discuss how to install Docker Tool Box in Windows. Docker Toolbox is used for older Mac and Windows systems that do not meet the requirements of Docker Desktop for Mac and Docker Desktop for Windows.

Docker Toolbox provides a way to use Docker on Windows systems that do not meet minimal system requirements for the Docker Desktop for Windows app.

Docker Toolbox contains the following tools:

  • Docker Machine
  • Docker Engine
  • Docker Compose
  • Oracle VirtualBox
  • Kinematic
  • Docker Quickstart Terminal App

Prerequisites to install Docker Tool Box

Your Windows system must meet the following minimum requirements:

  • 64-bit Windows 7 (or higher)
  • Virtualization enabled

Before installation make sure your Windows system supports Hardware Virtualization Technology and virtualization is enabled. You can validate it by Choosing Start > Task Manager and navigate to the Performance tab. Under CPU you should see the virtualization status as enabled as shown below.

cpu-virtualization


NOTE: If virtualization is not enabled in your machine, please check how to enable it in your BIOS by following your manufacturer’s instructions.


Install Docker Toolbox

Once the system requirements have been verified, download the installer from the Docker website.

Docker Toolbox will install the following applications:

  • Docker Client for Windows
  • Docker Toolbox management tool and ISO
  • Oracle VirtualBox
  • Git MSYS-git UNIX tools

IMPORTANT: If you have VirtualBox installed and running, please shut down it before the installation begins.

Open the installer by double-clicking the .exe file. Choose "Yes" in the Windows security dialog box to allow the program to make changes to your PC.

Docker Installation

Choose the installation directory and Click on "Next" button.

Docker Installation


Check the components to be installed if "Git for Windows" and "VirtualBox" is already installed then uncheck it and Click "Next" button.

Docker Installation


Accept all default options and click the "Next" button.

Docker Installation


Verify that all selected components will be installed and Click on "Back" button to change any settings.

Docker Installation


Click the "Install" button to finish the installation.

After all the components are installed, the wizard will notify that installation was successful. Uncheck "View Shortcuts in File Explorer" and click "Finish".

Docker Installation


Verify The Installation

After successful installation you can see below three icons on desktop.

Docker Installation


Launch the Docker Quickstart Terminal by clicking on the Docker quick Start icon. This starts the creation of the Docker machine and all its components.

Docker Installation


Check the version of installed Docker using docker version command

Docker Installation


Type the following command and press Enter:

docker run hello-world

Docker will download and run the "hello world" container. A confirmation message will be displayed in the terminal.

Docker Installation

This indicates that your Docker installation is successful.

Quick Tip for Windows 10 : Use 192.168.99.100 in URL instead of localhost.If you are using Window 10 and are using docker toolbox => Use 192.168.99.100 instead of localhost. Note: If 192.168.99.100 does not work, you can find the IP by using the command docker-machine ip

Whats Next

You can start your Docker Journey by learning about the command you can execute in your computer terminal.

Previous Next Article

comments powered by Disqus