Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace docker-compose (V1) with docker compose (V2) #490

Merged
merged 3 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/guide/advanced/running-iroha-on-bare-metal.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ ports need to be adjusted so there are no collisions. See the

## Deploy a minimal BFT network

Both of there approaches are messy and error-prone, which is why the
tutorial uses `docker-compose`. However, this brings you closer to the
Both of the following approaches could be messy and error-prone, which is why the [Quick Start](../get-started/quick-start.md) tutorial suggests using the `docker compose` command.
tutorial uses `docker compose`. However, this brings you closer to the
yamkovoy marked this conversation as resolved.
Show resolved Hide resolved
experience of actually maintaining a functional Iroha peer.

### Using Environment Variables
Expand Down
2 changes: 1 addition & 1 deletion src/guide/get-started/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $ cp -vfr ~/Git/iroha/configs/client/config.json example/config.json
::: tip

You can also use the provided `config.json` in the `example` folder if you
also call `docker-compose up` from that same folder. This has to do with
also call `docker compose up` from that same folder. This has to do with
the fact that the configuration for the Docker files in Iroha Python is
slightly different.

Expand Down
6 changes: 2 additions & 4 deletions src/guide/get-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@

2. [Install Iroha from GitHub](./install.md).

3. Run `docker-compose` to bring up a network of 4 containerised peers:

<!-- Check Docker releases: `docker compose` is going to replace `docker-compose` -->
3. Run `docker compose` to bring up a network of 4 containerised peers:

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

Depending on your set-up, this might either
Expand Down
Loading