Offline Notepad View raw

Shared snapshot

How to Install Docker on Windows

use powershell.exe and run:

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

([official instructions here] (https://chocolatey.org/install#individual))

choco install git -params '"/GitAndUnixToolsOnPath"'

(from these instructions which inc workaround for path issue)

choco install docker

(also see [this] (https://hub.docker.com/editions/community/docker-ce-desktop-windows/))