From 650cb68fe9daa88985046435e2c9c4a867f5344d Mon Sep 17 00:00:00 2001 From: Josh Stein <46639943+jcstein@users.noreply.github.com> Date: Mon, 2 Oct 2023 11:57:25 -0400 Subject: [PATCH] chore: update docker run commands to match #66 (#257) * chore: update docker run commands to match #66 * Update tutorials/gm-world.md Co-authored-by: nashqueue <99758629+nashqueue@users.noreply.github.com> * Update tutorials/starter-rollup.md Co-authored-by: nashqueue <99758629+nashqueue@users.noreply.github.com> --------- Co-authored-by: nashqueue <99758629+nashqueue@users.noreply.github.com> --- tutorials/gm-world.md | 2 +- tutorials/starter-rollup.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/gm-world.md b/tutorials/gm-world.md index 741a97b3b..44d922f02 100644 --- a/tutorials/gm-world.md +++ b/tutorials/gm-world.md @@ -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, diff --git a/tutorials/starter-rollup.md b/tutorials/starter-rollup.md index 782034b3b..6ae6f25ea 100644 --- a/tutorials/starter-rollup.md +++ b/tutorials/starter-rollup.md @@ -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.