Unable intsall docker for desktop application in Azure VM

Rajasekar Krishnamoorthy 1 Reputation point
2021-01-11T10:57:39.26+00:00

I am using Azure VM for my development env. And i am trying to install docker for desktop. Got the below error.

55393-image.png

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,111 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,366 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. prmanhas-MSFT 17,886 Reputation points Microsoft Employee
    2021-01-11T13:37:41.277+00:00

    @Rajasekar Krishnamoorthy You can refer to this thread with similar issue where resolution is provided as below:

    Disabling the power service worked.

    • Open msconfig.exe in the windows menu bar
    • Go to the "services" tab
    • Start typing "power" and it will auto find the correct service.
    • Untick the checkbox
    • Restart your PC
    • Make sure you do not have any Docker installation files in your drive
    • Start the installation process again and hopefully that'll work for you

    Also this thread might be helpful as well:

    https://github.com/docker/for-win/issues/6091

    Hope it helps!!!

    Please "Accept as Answer" if it helped so it can helps other in community looking for help on similar topics.


  2. SUNOJ KUMAR YELURU 13,921 Reputation points MVP
    2021-01-11T13:43:26.95+00:00

    @Rajasekar Krishnamoorthy

    What is the VM size your using?

    D4s_v3 worked for me as well.

    Here is a solution if you are getting this error on Azure Windows 10 VM where you have installed Docker:

    1. Ensure Windows Hyper-V featutes enabled by running PowerShell cmdlet:
      Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All -Verbose
    2. Ensure Windows Containers feature enabled by running PowerShell cmdlet:
      Enable-WindowsOptionalFeature -Online -FeatureName Containers -All -Verbose

    After running all Powershell cmds you restart the Azure VM.

    ----------

    Please don’t forget to "Accept the answer" and up-vote wherever the information provided helps you, this can be beneficial to other community members.