-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose-bridging.yml
72 lines (67 loc) · 1.64 KB
/
docker-compose-bridging.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
version: '3'
services:
bridging-merliondnode0:
container_name: bridging-merliondnode0
image: "merlionzone/localnetnode"
ports:
- "27656-27657:26656-26657"
- "8645-8646:8545-8546"
- "9190-9191:9090-9091"
- "1417:1317"
environment:
- ID=0
- LOG=${LOG:-merliond.log}
volumes:
- ./build-bridging:/merlion:Z
networks:
bridging-localnet:
ipv4_address: 192.168.11.2
bridging-merliondnode1:
container_name: bridging-merliondnode1
image: "merlionzone/localnetnode"
ports:
- "27659-27660:26656-26657"
- "8647-8648:8545-8546"
environment:
- ID=1
- LOG=${LOG:-merliond.log}
volumes:
- ./build-bridging:/merlion:Z
networks:
bridging-localnet:
ipv4_address: 192.168.11.3
bridging-merliondnode2:
container_name: bridging-merliondnode2
image: "merlionzone/localnetnode"
environment:
- ID=2
- LOG=${LOG:-merliond.log}
ports:
- "27661-27662:26656-26657"
- "8649-8650:8545-8546"
volumes:
- ./build-bridging:/merlion:Z
networks:
bridging-localnet:
ipv4_address: 192.168.11.4
bridging-merliondnode3:
container_name: bridging-merliondnode3
image: "merlionzone/localnetnode"
environment:
- ID=3
- LOG=${LOG:-merliond.log}
ports:
- "27663-27664:26656-26657"
- "8651-8652:8545-8546"
volumes:
- ./build-bridging:/merlion:Z
networks:
bridging-localnet:
ipv4_address: 192.168.11.5
networks:
bridging-localnet:
driver: bridge
ipam:
driver: default
config:
- subnet: 192.168.11.0/24