Skip to content

Commit

Permalink
docs: update docker cmd for rc12 (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstein authored Oct 10, 2023
1 parent 650cb68 commit 194d994
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tutorials/full-and-sequencer-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ submit blobs and can be set with the following command once your
local-celestia-devnet is running:

```bash
export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin)
export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin)
```

This will set the local-celestia-devnet bridge node auth token. This
Expand Down
6 changes: 3 additions & 3 deletions tutorials/gm-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ write permission is required to submit blobs and can be obtained
with the following command once your local-celestia-devnet is running:

```bash
docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin
docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin
```

This will give you the local-celestia-devnet bridge node auth token. This
Expand All @@ -336,7 +336,7 @@ local network, this will make sure you can post rollup blocks to your Celestia D
First, set your auth token:

```bash
export CELESTIA_NODE_AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin)
export CELESTIA_NODE_AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin)
```

Next, check your balance:
Expand Down Expand Up @@ -467,7 +467,7 @@ Remember that the following command assumes that there is only one container,
otherwise you can pass the container name.

```bash
export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /bridge auth admin)
export AUTH_TOKEN=$(docker exec $(docker ps -q) celestia bridge --node.store /home/celestia/bridge/ auth admin)
```

Run the `init-local.sh` script:
Expand Down

0 comments on commit 194d994

Please sign in to comment.