magento-cloud-docker
magento-cloud-docker copied to clipboard
Support Docker Compose v2 CLI (docker-compose vs. docker compose)
Is your feature request related to a problem? Please describe.
Docker Compose V2 use the new docker compose
command, and the old is docker-compose
Describe the solution you'd like Should support V1 and V2
Describe alternatives you've considered Try to detect and use the correct command
# Support Compose V2
if docker compose version > /dev/null 2>&1; then
DOCKER_COMPOSE="docker compose"
else
DOCKER_COMPOSE="docker-compose"
fi
$DOCKER_COMPOSE --help
Related files:
Additional context None
The internal task MCLOUD-9242 was created