Skip to content

Commit

Permalink
fix: cicd docker error
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeversiane committed Aug 23, 2024
1 parent d21feb9 commit 5b9162b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Docker Compose
run: docker-compose -f docker-compose.yaml up -d --build --no-cache
run: docker compose -f docker-compose.yaml up -d --build --no-cache

- name: Run project
run: make ci
Expand All @@ -45,12 +45,12 @@ jobs:

- name: Get Docker Compose status
if: failure()
run: docker-compose -f docker-compose.yaml ps
run: docker compose -f docker-compose.yaml ps

- name: Get Docker Compose logs
if: failure()
run: docker-compose -f docker-compose.yaml logs
run: docker compose -f docker-compose.yaml logs

- name: Tear Down
if: always()
run: docker-compose -f docker-compose.yaml down
run: docker compose -f docker-compose.yaml down

0 comments on commit 5b9162b

Please sign in to comment.