Docker: Difference between revisions
Jump to navigation
Jump to search
Line 42: | Line 42: | ||
* [[Artifactory]] | * [[Artifactory]] | ||
* [[Jenkins]] | * [[Jenkins]] | ||
* [[GitLab]] | |||
* [[Nexus]] | * [[Nexus]] | ||
| valign="top" | | | valign="top" | |
Revision as of 16:49, 24 August 2020
Windows 10 Home
# powershell
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
# powershell
docker pull hello-world
docker run -it --rm --name hello hello-world:latest
# gitbash
winpty docker pull hello-world
winpty docker run -it --rm --name hello hello-world:latest