-
Notifications
You must be signed in to change notification settings - Fork 0
/
devnet-docker-compose.yml
55 lines (48 loc) · 1.04 KB
/
devnet-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
version: '3'
networks:
devNet:
ipam:
config:
- subnet: 172.36.0.0/24
services:
seedDns:
image: samuelcolvin/dnserver
networks:
devNet:
ipv4_address: 172.36.0.101
ports:
- "53/udp"
volumes:
- ./devnet_dnszone.txt:/zones/zones.txt
node-1:
stdin_open: true
tty: true
hostname: node-1
image: catalyst.network/catalyst.node:latest
networks:
devNet:
ipv4_address: 172.36.0.110
node-2:
stdin_open: true
tty: true
hostname: node-2
image: catalyst.network/catalyst.node:latest
networks:
devNet:
ipv4_address: 172.36.0.120
node-3:
stdin_open: true
tty: true
hostname: node-3
image: catalyst.network/catalyst.node:latest
networks:
devNet:
ipv4_address: 172.36.0.130
node-4:
stdin_open: true
tty: true
hostname: node-4
image: catalyst.network/catalyst.node:latest
networks:
devNet:
ipv4_address: 172.36.0.140