-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathdocker-compose.yml
259 lines (218 loc) · 5.27 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
version: "3"
services:
stride1:
image: stridezone:stride
volumes:
- ./state/stride1:/home/stride/.stride
ports:
- "26657:26657"
- "1317:1317"
- "9090:9090"
stride2:
image: stridezone:stride
volumes:
- ./state/stride2:/home/stride/.stride
stride3:
image: stridezone:stride
volumes:
- ./state/stride3:/home/stride/.stride
gaia1:
image: stridezone:gaia
volumes:
- ./state/gaia1:/home/gaia/.gaia
ports:
- "26557:26657"
- "1307:1317"
- "9080:9090"
gaia2:
image: stridezone:gaia
volumes:
- ./state/gaia2:/home/gaia/.gaia
gaia3:
image: stridezone:gaia
volumes:
- ./state/gaia3:/home/gaia/.gaia
gaia4:
image: stridezone:gaia
volumes:
- ./state/gaia4:/home/gaia/.gaia
gaia5:
image: stridezone:gaia
volumes:
- ./state/gaia5:/home/gaia/.gaia
juno1:
image: stridezone:juno
volumes:
- ./state/juno1:/home/juno/.juno
ports:
- "26457:26657"
- "1297:1317"
- "9070:9090"
juno2:
image: stridezone:juno
volumes:
- ./state/juno2:/home/juno/.juno
juno3:
image: stridezone:juno
volumes:
- ./state/juno3:/home/juno/.juno
juno4:
image: stridezone:juno
volumes:
- ./state/juno4:/home/juno/.juno
juno5:
image: stridezone:juno
volumes:
- ./state/juno5:/home/juno/.juno
osmo1:
image: stridezone:osmo
volumes:
- ./state/osmo1:/home/osmosis/.osmosisd
ports:
- "26357:26657"
- "1287:1317"
- "9060:9090"
osmo2:
image: stridezone:osmo
volumes:
- ./state/osmo2:/home/osmosis/.osmosisd
osmo3:
image: stridezone:osmo
volumes:
- ./state/osmo3:/home/osmosis/.osmosisd
osmo4:
image: stridezone:osmo
volumes:
- ./state/osmo4:/home/osmosis/.osmosisd
osmo5:
image: stridezone:osmo
volumes:
- ./state/osmo5:/home/osmosis/.osmosisd
stars1:
image: stridezone:stars
volumes:
- ./state/stars1:/home/stars/.starsd
ports:
- "26257:26657"
- "1277:1317"
- "9050:9090"
stars2:
image: stridezone:stars
volumes:
- ./state/stars2:/home/stars/.starsd
stars3:
image: stridezone:stars
volumes:
- ./state/stars3:/home/stars/.starsd
stars4:
image: stridezone:stars
volumes:
- ./state/stars4:/home/stars/.starsd
stars5:
image: stridezone:stars
volumes:
- ./state/stars5:/home/stars/.starsd
# For the host chain, we must override the command to prevent an old binary from
# being run when testing upgrades
host1:
image: stridezone:stride
command: strided start
volumes:
- ./state/host1:/home/stride/.stride
ports:
- "26157:26657"
- "1267:1317"
- "9040:9090"
host2:
image: stridezone:stride
command: strided start
volumes:
- ./state/host2:/home/stride/.stride
host3:
image: stridezone:stride
command: strided start
volumes:
- ./state/host3:/home/stride/.stride
host4:
image: stridezone:stride
command: strided start
volumes:
- ./state/host4:/home/stride/.stride
host5:
image: stridezone:stride
command: strided start
volumes:
- ./state/host5:/home/stride/.stride
evmos1:
image: stridezone:evmos
volumes:
- ./state/evmos1:/home/evmos/.evmosd
ports:
- "26057:26657"
- "1257:1317"
- "9030:9090"
evmos2:
image: stridezone:evmos
volumes:
- ./state/evmos2:/home/evmos/.evmosd
evmos3:
image: stridezone:evmos
volumes:
- ./state/evmos3:/home/evmos/.evmosd
evmos4:
image: stridezone:evmos
volumes:
- ./state/evmos4:/home/evmos/.evmosd
evmos5:
image: stridezone:evmos
volumes:
- ./state/evmos5:/home/evmos/.evmosd
# Fill in new host zone being tested here
hermes:
image: stridezone:hermes
volumes:
- ~/.hermes:/home/hermes/.hermes
- ./state/hermes/config.toml:/home/hermes/.hermes/config.toml
restart: always
relayer-gaia:
image: stridezone:relayer
volumes:
- ./state/relayer-gaia:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-gaia" ]
relayer-juno:
image: stridezone:relayer
volumes:
- ./state/relayer-juno:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-juno" ]
relayer-osmo:
image: stridezone:relayer
volumes:
- ./state/relayer-osmo:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-osmo" ]
relayer-stars:
image: stridezone:relayer
volumes:
- ./state/relayer-stars:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-stars" ]
relayer-host:
image: stridezone:relayer
volumes:
- ./state/relayer-host:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-host" ]
relayer-evmos:
image: stridezone:relayer
volumes:
- ./state/relayer-evmos:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-evmos" ]
relayer-juno-osmo:
image: stridezone:relayer
volumes:
- ./state/relayer-juno-osmo:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "juno-osmo" ]