Skip to content

Commit

Permalink
Use docker compose instead of docker-compose (#303)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
bestbeforetoday authored Aug 5, 2024
1 parent 184fd97 commit 5a5259d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run-integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 5a5259d

Please sign in to comment.