-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-mainchain.yml
More file actions
49 lines (47 loc) · 981 Bytes
/
docker-compose-mainchain.yml
File metadata and controls
49 lines (47 loc) · 981 Bytes
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
version: '3'
services:
mainchain_validator0:
container_name: mainchain_validator0
image: theta:latest
ports:
- "2201:22"
- "16888:16888"
- "18888:18888"
networks:
thetanet:
ipv4_address: 10.10.1.1
mainchain_validator1:
container_name: mainchain_validator1
image: theta:latest
ports:
- "2202:22"
networks:
thetanet:
ipv4_address: 10.10.1.2
mainchain_validator2:
container_name: mainchain_validator2
image: theta:latest
ports:
- "2203:22"
networks:
thetanet:
ipv4_address: 10.10.1.3
mainchain_validator3:
container_name: mainchain_validator3
image: theta:latest
ports:
- "2204:22"
networks:
thetanet:
ipv4_address: 10.10.1.4
networks:
thetanet:
external:
name: thetanet
# networks:
# thetanet:
# driver: bridge
# ipam:
# driver: default
# config:
# - subnet: 192.168.10.0/16