Reputation: 207
i am trying to install the docker on the windows 10 machine in Azure which has the VS community edition. Is it possible to install the docker on windows 10 VM
Upvotes: 1
Views: 765
Reputation: 763
You have to use Standard Security Type when using the D4ds_v4 or similar and then expose virtualization extensions after installing the Hyper-V PowerShell Feature.
Add-WindowsFeature @("Hyper-V-PowerShell")
Install-Module -Name DockerMsftProvider -Repository PSGallery
Get-VM WinContainerHost | Set-VMProcessor -ExposeVirtualizationExtensions $true
wsl --install
Upvotes: 0
Reputation: 3342
no,
as Azure is not supporting nested virtualisation. If you want to test docker and containers in Azure, try an Azure Server 2016 or Windows 10 Pro at home
Upvotes: 1