Skip to content

Commit

Permalink
Use docker compose instead of docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
joroKr21 committed Sep 23, 2024
1 parent f99f586 commit c193896
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 @@ -49,9 +49,9 @@ jobs:
- name: Run grpc-web e2e test
if: ${{ matrix.scala != 3 }}
run: |
docker-compose -f ./examples/fullapp/docker-compose.yaml up -d
docker compose -f ./examples/fullapp/docker-compose.yaml up -d
sbt e2eWebJS${{matrix.scala}}/fastOptJS/webpack e2eWebJVM${{matrix.scala}}/test
docker-compose -f ./examples/fullapp/docker-compose.yaml down
docker compose -f ./examples/fullapp/docker-compose.yaml down
- name: Examples
run: |
Expand Down
2 changes: 1 addition & 1 deletion examples/fullapp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To get this project running:
3. On a different tab, start envoyproxy in a docker container:

```
$ docker-compose up
$ docker compose up
```

4. In a browser open `index.html` in this directory. In Google Chrome, you can open a file by pressing
Expand Down

0 comments on commit c193896

Please sign in to comment.