forked from b2network/b2-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (49 loc) · 1.01 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: "3"
services:
node0:
image: ${ETHERMINT_IMAGE}
ports:
- "26657:26657"
- "8545:8545"
- "8546:8546"
- "8125:8125"
volumes:
- ./client-data/node0/ethermintd:/root/.ethermintd
networks:
- ethermint
node1:
image: ${ETHERMINT_IMAGE}
ports:
- "26658:26657"
- "8555:8545"
- "8556:8546"
- "8126:8125"
volumes:
- /root/.ethermintd:/root/.ethermintd
# - ./client-data/node1/ethermintd:/root/.ethermintd
networks:
- ethermint
node2:
image: ${ETHERMINT_IMAGE}
ports:
- "26659:26657"
- "8565:8545"
- "8566:8546"
- "8127:8125"
volumes:
- ./client-data/node2/ethermintd:/root/.ethermintd
networks:
- ethermint
node3:
image: ${ETHERMINT_IMAGE}
ports:
- "26660:26657"
- "8575:8545"
- "8576:8546"
- "8128:8125"
volumes:
- ./client-data/node3/ethermintd:/root/.ethermintd
networks:
- ethermint
networks:
ethermint: