Where do you get docker-compose.exe for Windows 2016

I have docker 17.03.1-ee-3 installed but it did not come with docker-compose.exe. Where do I get docker compose?

Check out the github releases page for the compose project. It includes a .exe for each release: https://github.com/docker/compose/releases/

I took a look at the compose install docs on docs.docker.com, and they seem to be missing instructions for windows server 2016, so I went ahead and opened this issue: https://github.com/docker/docker.github.io/issues/3012

I agree the docs should make that clear. Here’s how to get it with powershell:

Invoke-WebRequest "https://github.com/docker/compose/releases/download/1.12.0/docker-compose-Windows-x86_64.exe" -UseBasicParsing -OutFile $Env:ProgramFiles\docker\docker-compose.exe