Product:
Planning Analytics Workspace 73
Microsoft Server 2016
Issue:
During Start.ps1 checks at the start of the upgrade of PAW, you get message that docker-compose is to old.
Command: Docker version
will list your docker version, in our case it was 17.06.2-ee-14
Solution:
Ensure server have connection to internet.
Start powershell as administrator.
Run this commands:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Above to active TLS1.2
Invoke-WebRequest "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Windows-x86_64.exe" -UseBasicParsing -OutFile $Env:ProgramFiles\Docker\docker-compose.exe
Above to install docker-compose version 1.29
Then try to install PAW again.
More information:
https://docs.docker.com/compose/compose-file/compose-versioning/