From 5a5259d77cf27a91f99407a5d3807ca6e664d618 Mon Sep 17 00:00:00 2001 From: "Mark S. Lewis" Date: Mon, 5 Aug 2024 12:41:22 +0200 Subject: [PATCH] Use `docker compose` instead of `docker-compose` (#303) The old `docker-compose` command no longer exists in some environments and causes build failures. Instead use the replacement `docker compose` command. Signed-off-by: Mark S. Lewis --- scripts/run-integration-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run-integration-tests.sh b/scripts/run-integration-tests.sh index 756ed92c..a449497d 100755 --- a/scripts/run-integration-tests.sh +++ b/scripts/run-integration-tests.sh @@ -23,7 +23,7 @@ cd "$(dirname "$0")" source pull-fabric-images.sh pushd ../src/test/fixture/sdkintegration/ >/dev/null -docker-compose up --force-recreate -d +docker compose up --force-recreate -d popd >/dev/null && cd .. docker ps -a @@ -33,4 +33,4 @@ export MAVEN_OPTS="-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Sl mvn -B clean install -DskipITs=false -Dmaven.test.failure.ignore=false javadoc:javadoc -DdisableXmlReport=true pushd src/test/fixture/sdkintegration/ >/dev/null -docker-compose down --volumes +docker compose down --volumes