Docker: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 16: Line 16:
* [https://docs.microsoft.com/en-us/windows/wsl/install-win10 Windows Subsystem for Linux Installation]
* [https://docs.microsoft.com/en-us/windows/wsl/install-win10 Windows Subsystem for Linux Installation]
* [https://docs.microsoft.com/en-us/windows/wsl/install-win10#install-your-linux-distribution-of-choice Install your Linux distribution of choice]
* [https://docs.microsoft.com/en-us/windows/wsl/install-win10#install-your-linux-distribution-of-choice Install your Linux distribution of choice]
* [https://docs.microsoft.com/en-us/windows/wsl/wsl2-kernel Updating the WSL 2 Linux kernel]
* [https://docs.microsoft.com/en-us/windows/wsl/wsl2-kernel Updating the WSL-2 Linux kernel]
* [https://docs.docker.com/docker-for-windows/wsl/ Docker Desktop WSL 2 backend]
* [https://docs.docker.com/docker-for-windows/wsl/ Docker Desktop WSL-2 backend]
* [https://hub.docker.com/editions/community/docker-ce-desktop-windows/ Docker Desktop for Windows]
* [https://hub.docker.com/editions/community/docker-ce-desktop-windows/ Docker Desktop for Windows]
* [https://docs.microsoft.com/en-us/windows/wsl/compare-versions Comparing WSL-1 vs WSL-2]

Revision as of 08:37, 14 August 2020

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