-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yml
110 lines (105 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
version: "3"
services:
exocorenode0:
container_name: exocorenode0
image: "exocore/node"
read_only: true
environment:
- DEBUG=1
- ID=0
- LOG=${LOG:-exocore.log}
cap_add:
- SYS_PTRACE
security_opt:
- no-new-privileges:true
ports:
- "26656-26657:26656-26657"
- "1317:1317"
- "9090:9090"
- "8545:8545"
- "26661:26660"
- "8841:8546"
volumes:
- ./build/.testnets:/home/exocore/data:Z
networks:
localnet:
ipv4_address: 192.168.0.2
exocorenode1:
container_name: exocorenode1
image: "exocore/node"
read_only: true
environment:
- DEBUG=0
- ID=1
- LOG=${LOG:-exocore.log}
cap_add:
- SYS_PTRACE
security_opt:
- no-new-privileges:true
ports:
- "26666-26667:26656-26657"
- "1318:1317"
- "9091:9090"
- "8546:8545"
- "26662:26660"
- "8842:8546"
volumes:
- ./build/.testnets:/home/exocore/data:Z
networks:
localnet:
ipv4_address: 192.168.0.3
exocorenode2:
container_name: exocorenode2
image: "exocore/node"
read_only: true
environment:
- DEBUG=0
- ID=2
- LOG=${LOG:-exocore.log}
cap_add:
- SYS_PTRACE
security_opt:
- no-new-privileges:true
ports:
- "26676-26677:26656-26657"
- "1319:1317"
- "9092:9090"
- "8547:8545"
- "26663:26660"
- "8843:8546"
volumes:
- ./build/.testnets:/home/exocore/data:Z
networks:
localnet:
ipv4_address: 192.168.0.4
exocorenode3:
container_name: exocorenode3
image: "exocore/node"
read_only: true
environment:
- DEBUG=0
- ID=3
- LOG=${LOG:-exocore.log}
cap_add:
- SYS_PTRACE
security_opt:
- no-new-privileges:true
ports:
- "26686-26687:26656-26657"
- "1320:1317"
- "9093:9090"
- "8548:8545"
- "26664:26660"
- "8844:8546"
volumes:
- ./build/.testnets:/home/exocore/data:Z
networks:
localnet:
ipv4_address: 192.168.0.5
networks:
localnet:
driver: bridge
ipam:
driver: default
config:
- subnet: 192.168.0.0/18