Skip to content

Commit ec80f12

Browse files
authored
Merge pull request #877 from aws-observability/thpierce-patch-3
Fix docker-compose issue
2 parents a37c51d + 1dcccc8 commit ec80f12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/e2e-tests-app-with-java-agent.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
registry: public.ecr.aws
9797

9898
- name: Run test containers
99-
run: docker-compose up --abort-on-container-exit
99+
run: docker compose up --abort-on-container-exit
100100
working-directory: .github/collector
101101
env:
102102
INSTANCE_ID: ${{ github.run_id }}-${{ github.run_number }}
@@ -127,7 +127,7 @@ jobs:
127127
registry: public.ecr.aws
128128

129129
- name: Run test containers
130-
run: docker-compose up --abort-on-container-exit
130+
run: docker compose up --abort-on-container-exit
131131
working-directory: .github/collector
132132
env:
133133
INSTANCE_ID: ${{ github.run_id }}-${{ github.run_number }}

.github/workflows/soak-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
# MATRIX_COMMIT_COMBO
145145
# GITHUB_RUN_ID
146146
run: |-
147-
docker-compose up --build;
147+
docker compose up --build;
148148
RUN_TESTS_EXIT_CODE=$(
149149
docker inspect $(
150150
docker ps --quiet --all --filter "name=docker-performance-tests_alarms-poller"

0 commit comments

Comments
 (0)