Skip to content

Commit 27ebcd7

Browse files
fix: point nwaku to proper docker repo and image version (#217)
* fix: point nwaku to proper docker repo and image version * chore: add help command in docker --------- Co-authored-by: fryorcraken <[email protected]>
1 parent bc61887 commit 27ebcd7

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

.cspell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"autoplay",
4141
"classwide",
4242
"devel",
43-
"statusteam",
43+
"wakuorg",
4444
"myaddr",
4545
"extip",
4646
"staticnode",

docs/guides/nwaku/config-methods.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Node configuration is primarily done using command line options, which override
2525
When running your node with Docker, provide the command line options after the image name in this format:
2626

2727
```shell
28-
docker run statusteam/nim-waku --tcp-port=65000
28+
docker run wakuorg/nwaku --tcp-port=65000
2929
```
3030

3131
## Environment variables
@@ -41,7 +41,7 @@ WAKUNODE2_TCP_PORT=65000 ./build/wakunode2
4141
When running your node with Docker, start the node using the `-e` command option:
4242

4343
```shell
44-
docker run -e "WAKUNODE2_TCP_PORT=65000" statusteam/nim-waku
44+
docker run -e "WAKUNODE2_TCP_PORT=65000" wakuorg/nwaku
4545
```
4646

4747
:::info
@@ -72,7 +72,7 @@ You can also specify the configuration file via environment variables:
7272
WAKUNODE2_CONFIG_FILE=[TOML CONFIGURATION FILE] ./build/wakunode2
7373

7474
# Using environment variables with Docker
75-
docker run -e "WAKUNODE2_CONFIG_FILE=[TOML CONFIGURATION FILE]" statusteam/nim-waku
75+
docker run -e "WAKUNODE2_CONFIG_FILE=[TOML CONFIGURATION FILE]" wakuorg/nwaku
7676
```
7777

7878
:::info

docs/guides/nwaku/run-docker.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ We recommend running a `nwaku` node with at least 2GB of RAM, especially if `WSS
1515

1616
## Get Docker image
1717

18-
The Nwaku Docker images are available on the Docker Hub public registry under the [statusteam/nim-waku](https://hub.docker.com/r/statusteam/nim-waku) repository. Please visit [statusteam/nim-waku/tags](https://hub.docker.com/r/statusteam/nim-waku/tags) for images of specific releases.
18+
The Nwaku Docker images are available on the Docker Hub public registry under the [wakuorg/nwaku](https://hub.docker.com/r/wakuorg/nwaku) repository. Please visit [wakuorg/nwaku/tags](https://hub.docker.com/r/wakuorg/nwaku/tags) for images of specific releases.
1919

2020
## Build Docker image
2121

@@ -45,7 +45,7 @@ docker run [OPTIONS] [IMAGE] [ARG...]
4545
Run `nwaku` using the most typical configuration:
4646

4747
```shell
48-
docker run -i -t -p 60000:60000 -p 9000:9000/udp statusteam/nim-waku:v0.20.0 \
48+
docker run -i -t -p 60000:60000 -p 9000:9000/udp wakuorg/nwaku:v0.32.0 \
4949
--dns-discovery=true \
5050
--dns-discovery-url=enrtree://AIRVQ5DDA4FFWLRBCHJWUWOO6X6S4ZTZ5B667LQ6AJU6PEYDLRD5O@sandbox.waku.nodes.status.im \
5151
--discv5-discovery=true \
@@ -58,6 +58,16 @@ To find your public IP, use:
5858
dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | awk -F'"' '{ print $2}'
5959
```
6060

61+
For more detailed information about all possible configurations, please run
62+
63+
```shell
64+
docker run -t wakuorg/nwaku:v0.32.0 --help
65+
```
66+
67+
:::info
68+
Note that running a node in The Waku Network (--cluster-id=1) requires a special set of configurations and therefore, it is recommended to run in this case with docker compose
69+
:::
70+
6171
:::info
6272
We recommend using explicit port mappings (`-p`) when exposing ports accessible from outside the host (listening and discovery ports, API servers).
6373
:::

docs/research/benchmarks/postgres-adoption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ In this case, we are comparing *Store* performance by means of Rest service.
7878
- node_c: one _nwaku_ node with *REST* enabled and acting as a *Store client* for node_a.
7979
- node_d: one _nwaku_ node with *REST* enabled and acting as a *Store client* for node_b.
8080
- With _jmeter_, 10 users make *REST* *Store* requests concurrently to each of the “rest” nodes (node_c and node_d.)
81-
- All _nwaku_ nodes running statusteam/nim-waku:v0.19.0
81+
- All _nwaku_ nodes running wakuorg/nwaku:v0.32.0
8282
8383
[This](https://github.com/waku-org/test-waku-query/blob/master/docker/jmeter/http_store_requests.jmx) is the _jmeter_ project used.
8484

0 commit comments

Comments
 (0)