Skip to content

Commit

Permalink
fixup! fix(testnet): update instructions for running a client-only co…
Browse files Browse the repository at this point in the history
…ntainer

Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
  • Loading branch information
s8sato committed Feb 3, 2025
1 parent 6d08d1a commit 37604b9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/running-a-sora-testnet-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,25 @@ Next, run the following command to start a container:
docker compose -f docker-compose.volunteer.client.yml up -d
```

**Example output:**

```log
[+] Running 1/1>docker compose -f docker-compose.volunteer.client.yml up -d
✔ Container defaults-clients-1 Started
```

Note the container name: in this example it is `defaults-clients-1`. On your set up it may be different. You need it for the following steps.

### 2. Send and Inspect a Mock Transaction

To listen for incoming transactions, attach a shell to the running container:

```bash
docker exec -it defaults-clients-1 bash
docker exec -it <container_name> bash
```

Where <container_name> is the name your client container was assigned on step 1.

And once you're in the container's shell, run:

```bash
Expand Down

0 comments on commit 37604b9

Please sign in to comment.