Skip to content

Commit

Permalink
ci: use docker compose v2
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Glimcher <[email protected]>
  • Loading branch information
glimchb authored Aug 2, 2024
1 parent a0f9ef0 commit 3ea0578
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ jobs:
- uses: docker/setup-buildx-action@edfb0fe6204400c56fbfd3feba3fe9ad1adfa345

- name: Start containers
run: docker-compose up --build --force-recreate --detach
run: docker compose up --build --force-recreate --detach

- name: Run Tests
run: ./scripts/tests.sh

- name: Logs
if: always()
run: docker-compose logs
run: docker compose logs

- name: Stop containers
if: always()
run: docker-compose down --volumes --remove-orphans
run: docker compose down --volumes --remove-orphans

0 comments on commit 3ea0578

Please sign in to comment.