* Install package manager `chocolately` 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))_ * Install `git` via newly installed package manager ``` choco install git -params '"/GitAndUnixToolsOnPath"' ``` _(from [these instructions which inc workaround for path issue](https://www.jamessturtevant.com/posts/5-Ways-to-install-git-on-Windows/#using-chocolatey))_ * Install _Docker Desktop for Windows_ ``` choco install docker ``` _(also see [this] (https://hub.docker.com/editions/community/docker-ce-desktop-windows/))_