Michael D. Green

Blogger, Consultant, Technologist and Very Opinionated.

How to Run Docker on a Windows 10 Pro Hyper-V Virtual Machine

06 Apr 2019 » technology

Blogs - Michaeldeongreen

I wanted to write a very quick blog on how to run docker on a Windows 10 Hyper-V Virtual Machine.

Caveats!

This blog entry is not a tutorial on Docker, Hyper-V or Powershell. The expectation is that you already have basic knowledge about these topics and concepts.

Prerequisites!

  • Hyper-V
  • Powershell
  • Windows 10 Pro Hyper-V Host VM
  • Windows 10 Pro Hyper-V Guest VM

Background!

As I have progressed through my consulting career, one of the skills I have started to employ is to use Hyper-V to create a VM for each of my projects to avoid having to install a bunch of software directly on my laptop. Lately, I have been using Ubuntu VMs over Windows VMs for a variety of reasons and docker works perfectly fine running on an Ubuntu 18.04 Hyper-V VM.

On my last project here at Microsoft, our Client Partner had a hard dependency on Windows and I quickly found out that running docker on a Windows Hyper-V VM was non-trivial (or at least it appeared this way at the time). Due to a lack of time and knowledge, I had to shelf learning how to get docker to work inside of a Windows Hyper-V VM.

On my current project, we are working a lot with docker and with some guidance from my co-workers, I was able to learn how to get docker up and running on a Windows Hyper-V VM and it turned out to be fairly trivial.

Let’s Get Started!

First, navigate to Microsoft Docs GitHub repository for virtualization and get the Powershell script that can be used to enable Nested Virtualiztion, which can be found here.

Copy this Powershell script to a folder on your computer.

Next, open up Hyper-V and do the following:

  • Ensure that your Windows VM is not running
  • Get the name of the Windows VM

Next, open up Powershell as an administrator, navigate to the directory where you downloaded the Enable-NestedVm.ps1 Powershell script and run the following command (Enter “Y” for all question prompts):

    .\Enable-NestedVm.ps1 {name-of-windows-vm}
    

In Hyepr-V, start your vm and install docker docker for windows. After docker for windows has been installed, you will need to logout of the VM.

Once you have logged back into your Windows VM, you will be prompted with the following (which you will select Ok):

Blogs - Michaeldeongreen

After docker for windows is installed, the VM will restart and will take several minutes for docker to start.

Blogs - Michaeldeongreen

Once docker for windows is finished loading, you will want to ensure docker for windows is working correctly inside of the Windows 10 Hyper-V VM by pulling down the hello-world image and running it. Open a bash prompt and type the following:

    
    docker pull hello-world && docker run hello-world

If docker is installed correctly, you should see the following:

Blogs - Michaeldeongreen