From 771cd8658fa1794f36500ea69bc7ba1813f1c4fd Mon Sep 17 00:00:00 2001 From: Sergei Tikhomirov Date: Fri, 16 May 2025 15:32:37 +0200 Subject: [PATCH 1/2] `docker compose` and not `docker-compose` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 28fd595..ce3a55d 100644 --- a/README.md +++ b/README.md @@ -79,11 +79,11 @@ echo "POSTGRES_SHM=4g" >> .env Start all processes: nwaku node, database and grafana for metrics. Your [RLN](https://rate-limiting-nullifier.github.io/rln-docs/what_is_rln.html) membership is loaded into nwaku under the hood. ```console -docker-compose up -d +docker compose up -d ``` ⚠️ The node might take a few minutes the very first time it runs because it needs to build locally the RLN community membership tree. -###🏄🏼‍♂️ 4. Interact with your nwaku node +### 🏄🏼‍♂️ 4. Interact with your nwaku node * See [localhost:3000](http://localhost:3000/d/yns_4vFVk/nwaku-monitoring) for node metrics. * See [localhost:4000](http://localhost:4000) for a nice frontend to chat with other users. From 05c4ece4d89a27ec26bff02132ca283b7f75ff55 Mon Sep 17 00:00:00 2001 From: Sergei Tikhomirov Date: Wed, 30 Jul 2025 12:23:56 +0200 Subject: [PATCH 2/2] check docker-compose presense dynamically Co-authored-by: fryorcraken <110212804+fryorcraken@users.noreply.github.com> --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ce3a55d..ab24a7e 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,8 @@ echo "POSTGRES_SHM=4g" >> .env Start all processes: nwaku node, database and grafana for metrics. Your [RLN](https://rate-limiting-nullifier.github.io/rln-docs/what_is_rln.html) membership is loaded into nwaku under the hood. ```console -docker compose up -d +DOCKER_COMPOSE=$(which docker-compose > /dev/null 2>&1 && echo "docker-compose" || echo "docker compose") +$DOCKER_COMPOSE up -d ``` ⚠️ The node might take a few minutes the very first time it runs because it needs to build locally the RLN community membership tree.