Add docker-compose and instructions to run
This commit is contained in:
parent
828e7cbbb8
commit
4a8288b82c
@ -31,6 +31,14 @@ $ make tools deps build
|
|||||||
$ make tools deps install
|
$ 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
|
### Community
|
||||||
|
|
||||||
The following chat channels and forums are a great spot to ask questions about Ethermint:
|
The following chat channels and forums are a great spot to ask questions about Ethermint:
|
||||||
|
7
docker-compose.yaml
Normal file
7
docker-compose.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
ethermint:
|
||||||
|
build: .
|
||||||
|
volumes:
|
||||||
|
- ./data/:/data/
|
||||||
|
command: ["ethermint", "-blockchain", "/data/blockchain"]
|
Loading…
Reference in New Issue
Block a user