You must use Docker Toolbox to run docker on Windows 10 home. There is a native Docker for Windows Pro, Enterprise or Education. It runs natively on *nix.
I ran into a few quirks setting up Docker and VirtualBox on my Windows Home PC. Here are some tips.
Command to install Docker Desktop using PowerShell on Windows. Now, everything is ready on Powershell and we can use the Choco command to install Docker on Windows 10 Desktop or Windows Server OS. Choco install docker-desktop -pre. When the above command asks for your permission to install the packages, allow it by typing A and hitting the. Aug 26, 2019 1 – Install Docker on Windows 7/8/10 Home. A – Download the Docker Toolbox executable. B – Run the Docker Toolbox installer for Windows. C – Run the Docker Quickstart for Windows. 2 – Install Docker on Windows 10 Pro and Enterprise. A – Check your virtualization settings. B – Create an account on Docker Hub. This article isn’t for you. If you’re on Windows 10 and trying to use Docker and VirtualBox side by side, read on. This article explains how to Install Docker Toolbox on Windows 10 and how to overcome and troubleshoot the common pitfalls. Installing Docker on Windows 10 is a cinch unless you want to use it alongside VirtualBox.
Install Docker Toolbox by double-clicking the installer. The installer launches the 'Setup - Docker Toolbox' dialog. If Windows security dialog prompts you to allow the program to make a change, choose Yes. The system displays the Setup - Docker Toolbox for Windows wizard. Press Next to accept all the defaults and then Install. Xibo for Docker on Windows 10 64 bit Install Docker. There are 2 Docker products for 64 bit Windows, “Docker for Windows” and “Docker Toolbox”. If you have Windows 10 Professional 64 bit, then Docker for Windows is the version of Docker you should install.
Install Docker on Windows Home

This is considered a legacy product. Hopefully Docker will be able to add support for Windows Home to their native app in the future. You can download Docker Toolbox from the toolbox support page.
Follow instructions there to install docker.
Using Docker with Windows PowerShell
Install Docker Toolbox On Windows 10 Home
Once your docker machine is running you can access it with MINGW or Power Shell. In order to use Power Shell we need to load the environment variables, which are loaded by default in MINGW.
Open MINGW and type:
It should return output similar to this:
Paste the last line from the above output into PowerShell
Confirm it worked by typing the following in PowerShell
Full documentation is available on Docker’s site.
Mounting Volumes in MINGW
MINGW Posix Conversion shows how MINGW converts filepaths when typed into the terminal. When mounting a volume in MINGW you should put a double forward slash in front of the entire filepath section of the command like this:
You must also make sure that the filepath you use is set up as a shared folder in VirtualBox. Docker automatically sets c:/Users as a shared folder. You can add others in the VirtualBox interface.
Using Bash in Powershell
MINGW does not work properly with the -t (TTY) option. Right now it seems the best workaround is to use Powershell instead. In a Powershell terminal type:
Have you previously installed Docker Toolbox, Docker Machine, or VirtualBox?
Docker for Windows now requires Microsoft’s Hyper-V. Once enabled, VirtualBox will no longer be able to run virtual machines (your VM images will still remain). You can still use docker-machine
to manage remote hosts.
You have the option to import the default
VM after installing Docker for Windows from the Settings menu in the System Tray.

Docker for Windows enables Hyper-V if necessary; this requires a reboot.
Requirements
Docker for Windows runs on 64-bit Windows 10 Pro, Enterprise, and Education; 1511 November update, Build 10586 or later. Docker plans to support more versions of Windows 10 in the future.
Installation
- Download Docker.
- Double-click
InstallDocker.msi
to run the installer. - Follow the Install Wizard: accept the license, authorize the installer, and proceed with the install.
- Click Finish to launch Docker.
- Docker starts automatically.
- Docker loads a “Welcome” window giving you tips and access to the Docker documentation.
That’s it!
Verification
The whale in the status bar indicates a running (and accessible via terminal) Docker instance.
Open PowerShell or your favorite Windows terminal (e.g., Command prompt) and enter docker run hello-world
.
Windows prompts you for access every time Docker starts, allowing Docker to manage the Hyper-V VM’s. The first time Docker starts, you may need to provide the token from the Beta invitation email. When initialization completes, select About Docker from the notification area and verify you have the latest version.
From PowerShell (or your favorite Windows terminal), check the versions of docker
, docker-compose
, and verify your installation:
Before you stop, let’s test a Dockerized webserver; from PowerShell or cmd.exe, run:
If your host does not already have it, Docker downloads nginx
from Docker Hub and starts it. As soon as the download completes, point your web browser to http://docker to view the start page. You should see:
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org.Commercial support is available at nginx.com.
Thank you for using nginx.
Mac.gerenciaya.co › Download-and-install-docker-onDownload And Install Docker On Windows 10
Common Pitfalls
CPU
If your CPU does not support virtualization, or if you do not have a 64-bit CPU, you cannot run Docker locally.
Operating System
If you do not run a 64-bit version of Windows Windows 10 Pro, Enterprise, or Education; 1511 November update, Build 10586 or later, you cannot run Docker for Windows.
You can install Docker Toolbox if you have a 64-bit version of Windows 7 or later. Alternately, you do have the option to upgrade.
Download Docker.
Next: Install Docker on Linux
Requirements and things to know before installing Docker for Linux.