Skip to content

Commit 6c319dd

Browse files
authored
ci(benchmarks): use docker compose v1 (#1563)
1 parent 4a9aea2 commit 6c319dd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/scripts/benchmarks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ NODEJS_VERSION=14
88

99
USER_ID="${USER_ID}" \
1010
NODEJS_VERSION="${NODEJS_VERSION}" \
11-
docker compose -f ./dev-utils/docker-compose.yml down \
11+
docker-compose -f ./dev-utils/docker-compose.yml down \
1212
--remove-orphans \
1313
--volumes || true
1414

1515
USER_ID="${USER_ID}" \
1616
NODEJS_VERSION="${NODEJS_VERSION}" \
17-
docker compose -f ./dev-utils/docker-compose.yml up \
17+
docker-compose -f ./dev-utils/docker-compose.yml up \
1818
--build \
1919
--abort-on-container-exit \
2020
--exit-code-from node-benchmark \

.ci/scripts/load-testing.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ NODEJS_VERSION=14
1010
USER_ID="${USER_ID}" \
1111
NODEJS_VERSION="${NODEJS_VERSION}" \
1212
STACK_VERSION=${STACK_VERSION} \
13-
docker compose -f ./dev-utils/docker-compose.yml down \
13+
docker-compose -f ./dev-utils/docker-compose.yml down \
1414
--remove-orphans \
1515
--volumes || true
1616

1717
USER_ID="${USER_ID}" \
1818
NODEJS_VERSION="${NODEJS_VERSION}" \
1919
STACK_VERSION=${STACK_VERSION} \
20-
docker compose -f ./dev-utils/docker-compose.yml up \
20+
docker-compose -f ./dev-utils/docker-compose.yml up \
2121
--build \
2222
--exit-code-from load-testing \
2323
load-testing

0 commit comments

Comments
 (0)