`docker-compose`` is an external tool written in python and is deprecated for a while. Github actions also removed support for that recently.
docker cli has a plugin named compose that is available as a command of the cli as in docker compose.
docker-compose and docker compose do not have same specifcations and it is not always a trivial task to migrate from one to another. This commit will only change all the references to the docker-compose to docker compose in our codebase.
`docker-compose`` is an external tool written in python and is deprecated for a while. Github actions also removed support for that recently.
docker cli has a plugin named compose that is available as a command of the cli as in
docker compose
.docker-compose
anddocker compose
do not have same specifcations and it is not always a trivial task to migrate from one to another. This commit will only change all the references to thedocker-compose
todocker compose
in our codebase.Github Actions removed support for
docker-compose
in https://github.com/actions/runner-images/pull/10368More details available at https://docs.docker.com/compose/intro/history/
Closes: #847