Skip to content

Commit

Permalink
Update docker-compose command to be compatible with V2 (#204)
Browse files Browse the repository at this point in the history
This is needed as Github migrated to V2. V2 docs: https://docs.docker.com/compose/migrate/

Signed-off-by: Naga Ravi Chaitanya Elluri <[email protected]>
  • Loading branch information
chaitanyaenr committed Aug 13, 2024
1 parent 2110049 commit cc1304b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
- name: Check out code
uses: actions/checkout@main
- name: Build the Docker images
run: docker-compose build --parallel
run: docker compose build --parallel
- name: Push the Docker images
run: docker-compose push
run: docker compose push
- name: Call repo lambda
run: |
curl --location --request POST '${{ secrets.LAMBDA_URL }}' --header 'Authorization: Bearer ${{ secrets.LAMBDA_TOKEN }}'

0 comments on commit cc1304b

Please sign in to comment.