Skip to content

Commit

Permalink
docker-compose to docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
chikamura committed Dec 3, 2024
1 parent 6f3adcd commit 9f611a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
distribution: "zulu"
- run: mkdir -p ./tmp
- run: date
- run: docker-compose up -d
- run: docker-compose ps
- run: docker compose up -d
- run: docker compose ps
- name: Check
run: ./gradlew check --console rich --info
- name: Install Embulk
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,16 +225,16 @@ $ ./gradlew gem

## Test

Firstly install Docker and Docker compose then `docker-compose up -d`,
Firstly install Docker and Docker compose then `docker compose up -d`,
so that an MongoDB server will be locally launched then you can run tests with `./gradlew test`.

```sh
$ docker-compose up -d
$ docker compose up -d
Creating embulk-input-mongodb_server ... done
Creating mongo-express ... done
Creating mongoClientTemp ... done

$ docker-compose ps
$ docker compose ps
Name Command State Ports
------------------------------------------------------------------------------------------------------------------------------
embulk-input-mongodb_server docker-entrypoint.sh mongod Up 0.0.0.0:27017->27017/tcp, 0.0.0.0:27018->27018/tcp
Expand Down

0 comments on commit 9f611a9

Please sign in to comment.