Skip to content

Commit

Permalink
chore: update docker run commands to match #66 (#257)
Browse files Browse the repository at this point in the history
* chore: update docker run commands to match #66

* Update tutorials/gm-world.md

Co-authored-by: nashqueue <[email protected]>

* Update tutorials/starter-rollup.md

Co-authored-by: nashqueue <[email protected]>

---------

Co-authored-by: nashqueue <[email protected]>
  • Loading branch information
jcstein and nashqueue authored Oct 2, 2023
1 parent 123e7fe commit 650cb68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tutorials/gm-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ this process can be done on any machine of your choosing. We tested out the Devn
First, run the [`local-celestia-devnet`](https://github.com/rollkit/local-celestia-devnet) by running the following command:

```bash
docker run --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc8
docker run -i -t --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc12
```

When passing the `--rollkit.da_config` flag later in the tutorial,
Expand Down
2 changes: 1 addition & 1 deletion tutorials/starter-rollup.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ git clone https://github.com/rollkit/gm-starter.git && cd gm-starter
In a second terminal instance, start the local-celestia-devnet:

```bash
docker run --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc8
docker run -i -t --platform linux/amd64 -p 26657:26657 -p 26658:26658 -p 26659:26659 ghcr.io/rollkit/local-celestia-devnet:v0.11.0-rc12
```

When passing the `--rollkit.da_config` flag later in the tutorial, it will require `auth_token`` to be passed in. The auth token with write permission is required to submit blobs and can be obtained from the logs on local-celestia-devnet before the bridge node starts.
Expand Down

0 comments on commit 650cb68

Please sign in to comment.