Skip to content

Commit

Permalink
README, CONTRIBUTING md file command update
Browse files Browse the repository at this point in the history
  • Loading branch information
fourjae committed Aug 3, 2024
1 parent e0e58e2 commit 5dd7e5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ make build # executable: ./bin/yorkie
You can set testing environment via Docker Compose. It is needed because integration tests require local applications like MongoDB.

```sh
docker-compose -f build/docker/docker-compose.yml up --build -d
docker compose -f build/docker/docker-compose.yml up --build -d
make test
```

Expand Down
8 changes: 4 additions & 4 deletions build/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ running multi-container Docker applications. We use Docker Compose to run the
applications needed during Yorkie development.

When developing Yorkie, we can easily run the required dependant applications
through `docker-compose` command.
through `docker compose` command.

```bash
# Run docker-compose up and Compose starts and runs apps.
docker-compose -f docker/docker-compose.yml up --build -d
# Run docker compose up and Compose starts and runs apps.
docker compose -f docker/docker-compose.yml up --build -d

# Shut down the apps
docker-compose -f docker/docker-compose.yml down
docker compose -f docker/docker-compose.yml down
```

The docker-compose files we use are as follows:
Expand Down

0 comments on commit 5dd7e5b

Please sign in to comment.