Skip to content

Commit

Permalink
Up[dates docker-compose to docker compose after Github CI change (#233)
Browse files Browse the repository at this point in the history
Signed-off-by: Elena Kolevska <elena@kolevska.com>
  • Loading branch information
elena-kolevska authored Aug 9, 2024
1 parent 3f089ea commit 2fb1b96
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/feed-generator-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build feed-generator app docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push feed-generator app image to dockerhub
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hashtag-actor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build hashtag app docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push hashtag app image to dockerhub
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hashtag-counter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build hashtag app docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push hashtag app image to dockerhub
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/message-analyzer-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build message-analyzer app docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push message-analyzer app image to dockerhub
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pubsub-workflow-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build pubsub-workflow docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push pubsub-workflow image to dockerhub
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build hashtag app docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push hashtag app image to dockerhub
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation-worker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build hashtag app docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push hashtag app image to dockerhub
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-gen-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Build workflow-gen app docker image
run: |
docker-compose build ${{ env.APP_IMAGE_NAME }}
docker compose build ${{ env.APP_IMAGE_NAME }}
docker tag ${{ env.APP_IMAGE_NAME }} ${{ env.APP_REGISTRY }}/${{ env.APP_IMAGE_NAME }}:${{ env.APP_VER }}
- name: Push workflow-gen app image to dockerhub
if: github.event_name != 'pull_request'
Expand Down

0 comments on commit 2fb1b96

Please sign in to comment.