Skip to content

Commit bab8c34

Browse files
committed
Install Docker Compose
1 parent 3280af9 commit bab8c34

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/dockerhub.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,13 @@ jobs:
6464
--tag ${{ env.IMAGE }}:${{ matrix.version }}
6565
.
6666

67+
- name: Install Docker Compose
68+
uses: withlogicco/setup-compose-cli@v1
69+
6770
- name: Test alpine image
6871
env:
6972
IMAGE: ${{ env.IMAGE }}:${{ matrix.version }}
70-
run: docker-compose -f docker-compose.test.yml run sut
73+
run: docker compose -f docker-compose.test.yml run sut
7174

7275
# if we get here, the test passed, so let's buildx and push
7376
- name: Log in to the container registry

.github/workflows/ghcr.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,13 @@ jobs:
6565
--tag ${{ env.IMAGE }}:${{ matrix.version }}
6666
.
6767

68+
- name: Install Docker Compose
69+
uses: withlogicco/setup-compose-cli@v1
70+
6871
- name: Test alpine image
6972
env:
7073
IMAGE: ${{ env.IMAGE }}:${{ matrix.version }}
71-
run: docker-compose -f docker-compose.test.yml run sut
74+
run: docker compose -f docker-compose.test.yml run sut
7275

7376
# if we get here, the test passed, so let's buildx and push
7477
- name: Log in to the container registry

0 commit comments

Comments
 (0)