dimitri / pgcopydb

Copy a Postgres database to a target Postgres server (pg_dump | pg_restore on steroids)
Other
1.19k stars 78 forks source link

Use compose plugin of docker #859

Closed hanefi closed 3 months ago

hanefi commented 3 months ago

`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.

Github Actions removed support for docker-compose in https://github.com/actions/runner-images/pull/10368

More details available at https://docs.docker.com/compose/intro/history/

Closes: #847