Skip to content

Commit

Permalink
Updated docs to reflect rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yaruno committed Mar 4, 2024
1 parent dbf0aca commit 0182d53
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions docs/docs/guides/how-to-run-streamr-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Start the Config Wizard with the below command. Docker will download the node im
#### Run the config wizard (Linux / macOS instructions)

```
sudo docker run -it -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.0 bin/config-wizard
sudo docker run -it -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.1 bin/config-wizard
```

#### **Windows PowerShell instructions**
Expand All @@ -64,7 +64,7 @@ cd ~/.streamrDocker
Then run the Config Wizard:

```
docker run -it -v ${pwd}:/home/streamr/.streamr streamr/node:v100.0.0-rc.0 bin/config-wizard
docker run -it -v ${pwd}:/home/streamr/.streamr streamr/node:v100.0.0-rc.1 bin/config-wizard
```

#### Using the Config Wizard
Expand All @@ -88,7 +88,7 @@ If you're running a node to become an Operator, then you could now jump back to
#### Linux / macOS instructions

```
sudo docker run -p 32200:32200 --name streamr --restart unless-stopped -d -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.0
sudo docker run -p 32200:32200 --name streamr --restart unless-stopped -d -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.1
```

#### Windows PowerShell instructions
Expand All @@ -99,7 +99,7 @@ First move into your node's folder:
cd ~/.streamrDocker
```
```
docker run -p 32200:32200 --name streamr --restart unless-stopped -d -v ${pwd}:/home/streamr/.streamr streamr/node:v100.0.0-rc.0
docker run -p 32200:32200 --name streamr --restart unless-stopped -d -v ${pwd}:/home/streamr/.streamr streamr/node:v100.0.0-rc.1
```

**The `docker run` command, deconstructed:**
Expand Down Expand Up @@ -233,7 +233,7 @@ For extra logging on your Streamr node, add the `LOG_LEVEL` environmental variab

For example,
```shell
sudo docker run -p 32200:32200 --name streamr --restart unless-stopped -d -e LOG_LEVEL=trace -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.0
sudo docker run -p 32200:32200 --name streamr --restart unless-stopped -d -e LOG_LEVEL=trace -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.1
```

## Mumbai node config
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/guides/how-to-stake-and-earn.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To earn DATA tokens on Polygon you must be willing to hold and stake DATA tokens
:::

### Current node software version
Use node version: `v100.0.0-rc.0`. Do not use the `latest` tag release.
Use node version: `v100.0.0-rc.1`. Do not use the `latest` tag release.

### Sponsorships
Sponsorships are the source of incentivization. These are visible on [The Hub](https://streamr.network/hub/network/sponsorships).
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/guides/how-to-update-your-streamr-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Keeping your node up to date is very important as new releases contain bug fixes
This guide is meant for Linux and MacOS. Windows Powershell commands will be slightly different.
:::

To update your Streamr node from `v100.0.0-testnet-three.6` to `v100.0.0-rc.0` (for example), run:
To update your Streamr node from `v100.0.0-testnet-three.6` to `v100.0.0-rc.1` (for example), run:

```
sudo docker stop streamr && sudo docker rm streamr && sudo docker container prune --force
Expand All @@ -30,7 +30,7 @@ sudo docker rmi IMAGE_ID
Run your updated node with the new node version,

```
sudo docker run -p 32200:32200 --name streamr --restart unless-stopped -d -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.0
sudo docker run -p 32200:32200 --name streamr --restart unless-stopped -d -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/node:v100.0.0-rc.1
```

Your updated node will now be running. As usual, you can checkup on it with
Expand Down

0 comments on commit 0182d53

Please sign in to comment.