From 90f555a473bc074bb9a5cbd32eb499d32c7d771f Mon Sep 17 00:00:00 2001 From: Nicholas Singh Date: Mon, 1 Aug 2022 06:08:20 -0400 Subject: [PATCH] Typo Fix for deployment options (#308) * Typo Fix for deploying without elasticsearch * removed extra minus --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ca79f3..d808a04 100644 --- a/README.md +++ b/README.md @@ -100,14 +100,14 @@ export AQUARIUS_VERSION=v2.0.0 | Option | Description | | -------------------------- | ----------------------------------------------------------------------------------------------- | | `--no-aquarius` | Start up Ocean without the `aquarius` Building Block. | -| `--no-elasticseach` | Start up Ocean without the `elasticsearch` Building Block. | +| `--no-elasticsearch` | Start up Ocean without the `elasticsearch` Building Block. | | `--no-provider` | Start up Ocean without the `provider` Building Block. | | `--no-ipfs` | Start up Ocean without the `ipfs` Building Block | | `--with-provider2` | Runs a 2nd provider, on port 8031. This is required for ocean.js/ocean.py integration tests. 2nd Provider will use the same image and parameters (log_level, ipfs gateway, compute gateway, etc) as provider1, but has a different private key | | `--no-dashboard` | Start up Ocean without the `dashboard` Building Block. | | `--with-rbac` | Start up Ocean with RBAC Server | | `--with-thegraph` | Start up Ocean with graphnode,postgresql and deploys ocean-subgraph | -| `---skip-subgraph-deploy` | Will skip deployment of ocean-subgraphs | +| `--skip-subgraph-deploy` | Will skip deployment of ocean-subgraphs | | `--skip-deploy` | Start up Ocean without deploying the contracts. Useful when ethereum node already has contracts.| | `--force-pull` | Force pulling the latest revision of the used Docker images. | | `--purge` | Removes the Docker containers, volumes, artifact folder and networks used by the script. |