Skip to content

Commit

Permalink
Replace docker-compose with docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksTeresh committed Oct 18, 2024
1 parent cfa6608 commit e8058b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Start the application
run: docker-compose -f docker-compose.ci.yml up -d
run: docker compose -f docker-compose.ci.yml up -d

- name: Install dependencies
run: npm ci
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Output application logs on failure
if: failure()
run: docker-compose -f docker-compose.ci.yml logs -t --tail=100
run: docker compose -f docker-compose.ci.yml logs -t --tail=100

build-and-push:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e8058b6

Please sign in to comment.