We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0ae3de commit 9544a7eCopy full SHA for 9544a7e
1 file changed
stack
@@ -59,8 +59,10 @@ if command -v docker-compose > /dev/null 2>&1; then
59
CONTAINER_COMPOSE=docker-compose
60
elif command -v podman-compose > /dev/null 2>&1; then
61
CONTAINER_COMPOSE=podman-compose
62
+elif docker compose --help > /dev/null 2>&1; then
63
+ CONTAINER_COMPOSE="docker compose"
64
else
- echo "Could not find neither \"docker-compose\" nor \"podman-compose\", aborting"
65
+ echo "Could not find \"docker-compose\", \"podman-compose\" or \"docker compose\", aborting"
66
exit 1
67
fi
68
0 commit comments