status-go/_assets/compose/wnode-test-cluster
Igor Sirotin a01ffdbe8e
fix: proper usage of CreateAccount RootDataDir (#5284)
* fix_: introduce CreateAccount.RootDataDir
* fix_: deprecate and remove ShhextConfig.BackupDisabledDataDir
2024-06-05 14:03:34 +01:00
..
README.md
docker-compose.yml Streamline configuration in status-go. Part of #1180 (#1183) 2018-09-13 18:31:29 +02:00
wnode-config.json fix: proper usage of CreateAccount RootDataDir (#5284) 2024-06-05 14:03:34 +01:00

README.md

Whisper Nodes Cluster

This is an instruction how to start a local Whisper cluster in Docker with docker-compose.

Prepare Docker image

First, you need to have an image called status-go:latest. To build it, run make docker-image.

Run cluster

To run the cluster with docker-compose, execute:

$ docker-compose up -d --scale wnode=3

It may be required to make your node a swarm manager first. If you see an appropriate error, follow the instructions.

This command will start a bootnode and three Whisper nodes. All Whisper nodes use the single bootnode and they should quickly find each other as peers.

To access debug info, run docker ps, figure out your host port bound to wnode 8080/tcp port and execute curl localhost:$HOST_PORT/debug/vars.

Of course, you can always use docker logs to read logs. By default, loglevel is set to DEBUG.