Add docker-compose and instructions to run

This commit is contained in:
Jack Zampolin 2018-07-13 14:28:11 -07:00
parent 828e7cbbb8
commit 4a8288b82c
2 changed files with 15 additions and 0 deletions

View File

@ -31,6 +31,14 @@ $ make tools deps build
$ make tools deps install
```
### Using Ethermint to parse Mainnet Ethereum blocks
There is an included `docker-compose.yaml` file and a `data/blockchain` file that provide an easy way to run the demo of parsing Mainnet ethereum blocks. The dump in `data/` only includes up to block `97638`. To run this have [`docker-compose.yaml` installed](https://docs.docker.com/compose/install/) and run the following:
```
$ docker-compose up
```
### Community
The following chat channels and forums are a great spot to ask questions about Ethermint:

7
docker-compose.yaml Normal file
View File

@ -0,0 +1,7 @@
version: '3'
services:
ethermint:
build: .
volumes:
- ./data/:/data/
command: ["ethermint", "-blockchain", "/data/blockchain"]