Docker: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 44: | Line 44: | ||
* [[Nexus]] | * [[Nexus]] | ||
* [[Gitlab]] | * [[Gitlab]] | ||
| valign="top" | | |||
* [https://docs.docker.com/engine/reference/builder/ Dockerfile Reference] | |||
|} | |} |
Revision as of 20:06, 14 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