Skip to content
Open
Changes from all 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
28 changes: 24 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,38 @@ docker compose -f docker-compose.full.yml up -d
```

List of all services and their URLs can be found at: http://localhost:8000

### Hyperchains configuration
### Hyperchains Configuration

This configuration runs the full infrastructure (see above) as *parent chain* and a copy of it as *child chain* + Hyperchains UI.

To boot it run:

```bash
docker compose -f docker-compose.full.yml -f docker-compose.hyperchain.yml up -d
```

List of all *parent chain* services and their URLs can be found at: http://localhost:8000
List of all *child chain* services and their URLs can be found at: http://localhost:8080
Access points:
- Parent chain services and documentation: http://localhost:8000
- Child chain services and documentation: http://localhost:8080
- Hyperchains management UI: http://localhost:28040

Available services:
- Node API
- Middleware
- Explorer
- Base Wallet
- Faucet
- Compiler
- Hyperchains UI

For development purposes, to rebuild the middleware and node containers with the latest `master` versions:

```bash
docker compose -f docker-compose.full.yml -f docker-compose.hyperchain.yml down -v --remove-orphans
docker compose -f docker-compose.full.yml -f docker-compose.hyperchain.yml build hc_mdw
docker compose -f docker-compose.full.yml -f docker-compose.hyperchain.yml up -d
```

### Image Version

Expand Down