From 9d7dc502217be78676bbea9f82c14cd6ebf91581 Mon Sep 17 00:00:00 2001 From: Ford Date: Wed, 24 May 2023 12:45:27 -0700 Subject: [PATCH] Remove docker-compose docs for indexers --- website/pages/en/operating-graph-node.mdx | 27 ----------------------- 1 file changed, 27 deletions(-) diff --git a/website/pages/en/operating-graph-node.mdx b/website/pages/en/operating-graph-node.mdx index 25e16b46700f..f66ffc238059 100644 --- a/website/pages/en/operating-graph-node.mdx +++ b/website/pages/en/operating-graph-node.mdx @@ -69,33 +69,6 @@ cargo run -p graph-node --release -- \ --ipfs https://ipfs.network.thegraph.com ``` -### Getting started using Docker - -#### Prerequisites - -- **Ethereum node** - By default, the docker compose setup will use mainnet: [http://host.docker.internal:8545](http://host.docker.internal:8545) to connect to the Ethereum node on your host machine. You can replace this network name and url by updating `docker-compose.yml`. - -#### Setup - -1. Clone Graph Node and navigate to the Docker directory: - -```sh -git clone http://github.com/graphprotocol/graph-node -cd graph-node/docker -``` - -2. For linux users only - Use the host IP address instead of `host.docker.internal` in the `docker-compose.yml`using the included script: - -```sh -./setup.sh -``` - -3. Start a local Graph Node that will connect to your Ethereum endpoint: - -```sh -docker-compose up -``` - ### Getting started with Kubernetes A complete Kubernetes example configuration can be found in the [indexer repository](https://github.com/graphprotocol/indexer/tree/main/k8s).