diff --git a/docker/README.md b/docker/README.md index af95f4bbd52..1bdc39ef613 100644 --- a/docker/README.md +++ b/docker/README.md @@ -35,7 +35,8 @@ docker run -it \ The Docker Compose setup requires an Ethereum network name and node to connect to. By default, it will use `mainnet:http://host.docker.internal:8545` in order to connect to an Ethereum node running on your host machine. -You can replace this with anything else in `docker-compose.yaml`. +You can replace this with anything else in `docker-compose.yaml` or set the +environment variables `NETWORK_NAME` and `ETHEREUM_RPC_URL`. After you have set up an Ethereum node—e.g. Ganache or Parity—simply clone this repository and run diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index c78c2eb2194..36e8beba7b3 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -19,7 +19,7 @@ services: postgres_pass: let-me-in postgres_db: graph-node ipfs: 'ipfs:5001' - ethereum: 'mainnet:http://host.docker.internal:8545' + ethereum: ${NETWORK_NAME:-mainnet}:${ETHEREUM_RPC_URL:-http://host.docker.internal:8545} GRAPH_LOG: info ipfs: image: ipfs/kubo:v0.17.0