laconicd/docker-compose.yml
Federico Kunze 375a7a074d
local testnet command (#378)
* evm: fix non-determinism

* fixes

* typo

* fix tests

* local testnet command

* fix testnet cmd (#383)

fix export-eth-key

generate eth type account in genesis.json file

* fixes

* update docker

* minor changes

* fix build-docker-local-ethermint

* fix dockerfile

* update Makefile

* update denoms

* update genesis file

* update makefile

* fix docker-compose.yml images

* fix localnet execution (#398)

* finish documentation

* changelog and comment rpc tests workflow

* update codecov

* update testnet docs

* fix docker-compose execution

* update docs

* fix errors and make testnet work (#403)

* fix errors and make testnet work

* Update Dockerfile

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>

* wip - fix db

* fixes emintd nodes and syncs nodes

* starts daemon and rpc server in bg

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Federico Kunze <federico.kunze94@gmail.com>

* update entrypoint and docs

* update logs

* try fix rpc

* build docker image

* Update Dockerfile

Co-authored-by: Holechain <nrgh@foxmail.com>
Co-authored-by: Alessio Treglia <quadrispro@ubuntu.com>
Co-authored-by: Daniel Choi <choidanielw@gmail.com>
2020-07-31 17:42:04 -04:00

79 lines
1.5 KiB
YAML

version: "3"
services:
emintdnode0:
container_name: emintdnode0
image: "emintd/node"
ports:
- "26656-26657:26656-26657"
- "1317:1317"
- "8545:8545"
environment:
- ID=0
- LOG=${LOG:-emintd.log}
volumes:
- ./build:/ethermint:Z
networks:
localnet:
ipv4_address: 192.168.10.2
entrypoint: "bash start.sh"
emintdnode1:
container_name: emintdnode1
image: "emintd/node"
ports:
- "26659-26660:26656-26657"
- "1318:1317"
- "8546:8545"
environment:
- ID=1
- LOG=${LOG:-emintd.log}
volumes:
- ./build:/ethermint:Z
networks:
localnet:
ipv4_address: 192.168.10.3
entrypoint: "bash start.sh"
emintdnode2:
container_name: emintdnode2
image: "emintd/node"
environment:
- ID=2
- LOG=${LOG:-emintd.log}
ports:
- "26661-26662:26656-26657"
- "1319:1317"
- "8547:8545"
volumes:
- ./build:/ethermint:Z
networks:
localnet:
ipv4_address: 192.168.10.4
entrypoint: "bash start.sh"
emintdnode3:
container_name: emintdnode3
image: "emintd/node"
environment:
- ID=3
- LOG=${LOG:-emintd.log}
ports:
- "26663-26664:26656-26657"
- "1320:1317"
- "8548:8545"
volumes:
- ./build:/ethermint:Z
networks:
localnet:
ipv4_address: 192.168.10.5
entrypoint: "bash start.sh"
networks:
localnet:
driver: bridge
ipam:
driver: default
config:
- subnet: 192.168.10.0/16