Docker: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 13: Line 13:


==Reference==
==Reference==
{|
| valign="top" |
* [https://dev.to/rohansawant/installing-docker-and-docker-compose-on-the-raspberry-pi-in-5-simple-steps-3mgl Installing Docker Compose on Raspberry Pi 4]
* [https://docs.docker.com/docker-for-windows/install-windows-home Install Docker Desktop on Windows Home]
* [https://docs.docker.com/docker-for-windows/install-windows-home Install Docker Desktop on Windows Home]
* [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]
Line 18: Line 21:
* [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]
* [[Install Docker in Raspberry Pi 4]]
* [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]
* [https://docs.microsoft.com/en-us/windows/wsl/compare-versions Comparing WSL-1 vs WSL-2]
* [[Bitbucket Pipelines]]
| valign="top" |
* [[Build Kerberos Docker Image from Ubuntu]]
* [[Build Apache Docker Image from Alpine]]
* [[Build LDAP Docker Image from Ubuntu]]
* [[Build Java Docker Image from CentOS]]
* [[Build Java Docker Image from Ubuntu]]
* [[Docker Run Oracle DB 18c XE]]
* [[Artifactory]]
* [[Jenkins]]
* [[Nexus]]
* [[Gitlab]]
|}

Revision as of 09:24, 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