Docker

From Chorke Wiki
Revision as of 08:37, 14 August 2020 by Shahed (talk | contribs) (→‎Reference)
Jump to navigation Jump to search

Windows 10 Home

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
wsl --set-default-version 2
docker pull hello-world
docker run -it --rm --name hello hello-world:latest
winpty docker run -it --rm --name hello hello-world:latest

Reference