Skip to content

Commit

Permalink
Merge pull request #973 from geirolz/migrate-to-docker-compose-2
Browse files Browse the repository at this point in the history
Migrate to docker compose v2
  • Loading branch information
geirolz authored Sep 3, 2024
2 parents 93f2dc7 + 6b0d560 commit 9b25937
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: coursier/setup-action@v1

- name: Starting up RabbitMQ
run: docker-compose up -d
run: docker compose up -d

- name: Cache Coursier dependencies
uses: actions/cache@v4
Expand All @@ -37,7 +37,7 @@ jobs:
run: sbt -J-Xms4G -J-Xmx4G buildFs2Rabbit

- name: Shutting down RabbitMQ
run: docker-compose down
run: docker compose down

migration-check:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ Check the [official guide](https://fs2-rabbit.profunktor.dev/guide.html) for upd

## Running tests locally

Start a `RabbitMQ` instance using `docker-compose` (recommended):
Start a `RabbitMQ` instance using `docker compose` (recommended):

```bash
> docker-compose up
> docker compose up
> sbt +test
```

Expand Down

0 comments on commit 9b25937

Please sign in to comment.