-
Notifications
You must be signed in to change notification settings - Fork 60
/
docker-compose.yml
123 lines (123 loc) · 2.7 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
111
112
113
114
115
116
117
118
119
120
121
122
123
version: '3.8'
services:
quicksilver:
image: quicksilverzone/quicksilver:latest
hostname: quicksilver
volumes:
- ./data/qstest-1:/quicksilver/.quicksilverd
build:
context: .
dockerfile: Dockerfile
ports:
- 26657:26657
- 1317:1317
quicksilver2:
image: quicksilverzone/quicksilver:latest
hostname: quicksilver2
volumes:
- ./data/qstest-1a:/quicksilver/.quicksilverd
build:
context: .
dockerfile: Dockerfile
quicksilver3:
image: quicksilverzone/quicksilver:latest
hostname: quicksilver3
volumes:
- ./data/qstest-1b:/quicksilver/.quicksilverd
build:
context: .
dockerfile: Dockerfile
testzone1-1:
image: quicksilverzone/testzone:latest
hostname: testzone1-1
volumes:
- ./data/lstest-1:/icad/.ica
command:
- icad
- start
ports:
- 27657:26657
- 21317:1317
testzone1-2:
image: quicksilverzone/testzone:latest
hostname: testzone1-2
volumes:
- ./data/lstest-1a:/icad/.ica
command:
- icad
- start
testzone1-3:
image: quicksilverzone/testzone:latest
hostname: testzone1-3
volumes:
- ./data/lstest-1b:/icad/.ica
command:
- icad
- start
testzone1-4:
image: quicksilverzone/testzone:latest
hostname: testzone1-4
volumes:
- ./data/lstest-1c:/icad/.ica
command:
- icad
- start
testzone2-1:
image: quicksilverzone/qsosmosis:v12.1.0
hostname: testzone2-1
build:
context: .
dockerfile: Dockerfile.osmosis
volumes:
- ./data/lstest-2:/osmosis/.osmosisd
command:
- osmosisd
- start
testzone2-2:
image: quicksilverzone/qsosmosis:v12.1.0
hostname: testzone2-2
volumes:
- ./data/lstest-2a:/osmosis/.osmosisd
command:
- osmosisd
- start
testzone2-3:
image: quicksilverzone/qsosmosis:v12.1.0
hostname: testzone2-3
volumes:
- ./data/lstest-2b:/osmosis/.osmosisd
command:
- osmosisd
- start
testzone2-4:
image: quicksilverzone/qsosmosis:v12.1.0
hostname: testzone2-4
volumes:
- ./data/lstest-2c:/osmosis/.osmosisd
command:
- osmosisd
- start
hermes:
image: informalsystems/hermes:v1.8.0
hostname: hermes
volumes:
- ./data/hermes:/home/hermes/.hermes
command:
- start
restart: always
icq:
image: quicksilverzone/interchain-queries:v0.10.0
volumes:
- ./data/icq:/icq/.icq
command:
- icq-relayer
- run
restart: always
icq2:
image: quicksilverzone/interchain-queries:v0.10.0
volumes:
- ./data/icq2:/icq/.icq
command:
- icq-relayer
- run
restart: always