-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (47 loc) · 889 Bytes
/
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
version: '3'
services:
validator0:
container_name: validator0
image: sshd:latest
ports:
- "2201:22"
- "26657:26657"
- "9090:9090"
networks:
testnet:
ipv4_address: 10.10.1.1
validator1:
container_name: validator1
image: sshd:latest
ports:
- "2202:22"
networks:
testnet:
ipv4_address: 10.10.1.2
validator2:
container_name: validator2
image: sshd:latest
ports:
- "2203:22"
networks:
testnet:
ipv4_address: 10.10.1.3
validator3:
container_name: validator3
image: sshd:latest
ports:
- "2204:22"
networks:
testnet:
ipv4_address: 10.10.1.4
networks:
testnet:
external:
name: thetanet
# networks:
# testnet:
# driver: bridge
# ipam:
# driver: default
# config:
# - subnet: 192.168.10.0/16