To fix how our CI tests are consistently failing, always with ./build_support/compose: line 26: docker-compose: command not found after a make command that utilizes docker-compose. That syntax is deprecated and removed in newest docker versions.
The fix: swap from docker-compose to docker compose in all instances. It does not seem that there should be much affect as the differences between v1 (uses the dash) and v2 (does not use the dash) do not seem major.
To fix how our CI tests are consistently failing, always with
./build_support/compose: line 26: docker-compose: command not found
after amake
command that utilizesdocker-compose
. That syntax is deprecated and removed in newest docker versions.The fix: swap from
docker-compose
todocker compose
in all instances. It does not seem that there should be much affect as the differences between v1 (uses the dash) and v2 (does not use the dash) do not seem major.