diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 7e096414080..83357e72c17 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -54,7 +54,7 @@ jobs: - name: 'Start cbioportal-docker-compose' working-directory: ./cbioportal-docker-compose run: | - docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml up -d + docker compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml up -d - name: 'Wait for cbioportal to initialize ...' id: startup uses: nev7n/wait_for_response@v1 diff --git a/test/integration/test_import_export.sh b/test/integration/test_import_export.sh index 861763b9df6..14cb2c6eaba 100755 --- a/test/integration/test_import_export.sh +++ b/test/integration/test_import_export.sh @@ -6,7 +6,7 @@ set -e run_in_service() { service=$1 shift - docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ + docker compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ run --rm \ "$service" bash -c "$@" return $? # return the exit code of the last command diff --git a/test/integration/test_integration_test_oncokb_import.sh b/test/integration/test_integration_test_oncokb_import.sh index bd00a5d1b77..e6304d9dc2e 100755 --- a/test/integration/test_integration_test_oncokb_import.sh +++ b/test/integration/test_integration_test_oncokb_import.sh @@ -6,7 +6,7 @@ set -e run_in_service() { service=$1 shift - docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ + docker compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ run --rm \ "$service" bash -c "$@" } diff --git a/test/integration/test_load_study.sh b/test/integration/test_load_study.sh index dc06e64fadd..e47a2032f1e 100755 --- a/test/integration/test_load_study.sh +++ b/test/integration/test_load_study.sh @@ -6,7 +6,7 @@ set -e run_in_service() { service=$1 shift - docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ + docker compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ run --rm \ "$service" bash -c "$@" } diff --git a/test/integration/test_update_oncokb.sh b/test/integration/test_update_oncokb.sh index c4448aa8d8c..5474ba499e6 100755 --- a/test/integration/test_update_oncokb.sh +++ b/test/integration/test_update_oncokb.sh @@ -5,7 +5,7 @@ set -e run_in_service() { service=$1 shift - docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ + docker compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ run --rm \ "$service" bash -c "$@" }