Skip to content

Commit

Permalink
Use latest docker compose command line
Browse files Browse the repository at this point in the history
  • Loading branch information
aleics committed Jan 16, 2025
1 parent 742f120 commit 344864f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
override: true

- name: start container
run: docker-compose up -d
run: docker compose up -d

- name: run integration tests
uses: actions-rs/cargo@v1
Expand All @@ -67,4 +67,4 @@ jobs:
args: --test '*'

- name: stop container
run: docker-compose down
run: docker-compose down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ And then starting a container:
docker run -dp 127.0.0.1:3000:3000 --rm --name delta-search delta-search
```

Or using `docker-compose`:
Or using `docker compose`:

```shell
docker compose up
Expand Down

0 comments on commit 344864f

Please sign in to comment.