forked from Stride-Labs/stride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
184 lines (155 loc) · 3.85 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
version: "3.8"
services:
stride1:
image: stridezone:stride
volumes:
- ./scripts/state/stride1:/home/stride/.stride
ports:
- "26657:26657"
- "1317:1317"
- "9090:9090"
stride2:
image: stridezone:stride
volumes:
- ./scripts/state/stride2:/home/stride/.stride
stride3:
image: stridezone:stride
volumes:
- ./scripts/state/stride3:/home/stride/.stride
gaia1:
image: stridezone:gaia
volumes:
- ./scripts/state/gaia1:/home/gaia/.gaia
ports:
- "26557:26657"
- "1307:1317"
- "9080:9090"
gaia2:
image: stridezone:gaia
volumes:
- ./scripts/state/gaia2:/home/gaia/.gaia
gaia3:
image: stridezone:gaia
volumes:
- ./scripts/state/gaia3:/home/gaia/.gaia
gaia4:
image: stridezone:gaia
volumes:
- ./scripts/state/gaia4:/home/gaia/.gaia
gaia5:
image: stridezone:gaia
volumes:
- ./scripts/state/gaia5:/home/gaia/.gaia
juno1:
image: stridezone:juno
volumes:
- ./scripts/state/juno1:/home/juno/.juno
ports:
- "26457:26657"
- "1297:1317"
- "9070:9090"
juno2:
image: stridezone:juno
volumes:
- ./scripts/state/juno2:/home/juno/.juno
juno3:
image: stridezone:juno
volumes:
- ./scripts/state/juno3:/home/juno/.juno
juno4:
image: stridezone:juno
volumes:
- ./scripts/state/juno4:/home/juno/.juno
juno5:
image: stridezone:juno
volumes:
- ./scripts/state/juno5:/home/juno/.juno
osmo1:
image: stridezone:osmo
volumes:
- ./scripts/state/osmo1:/home/osmosis/.osmosisd
ports:
- "26357:26657"
- "1287:1317"
- "9060:9090"
osmo2:
image: stridezone:osmo
volumes:
- ./scripts/state/osmo2:/home/osmosis/.osmosisd
osmo3:
image: stridezone:osmo
volumes:
- ./scripts/state/osmo3:/home/osmosis/.osmosisd
osmo4:
image: stridezone:osmo
volumes:
- ./scripts/state/osmo4:/home/osmosis/.osmosisd
osmo5:
image: stridezone:osmo
volumes:
- ./scripts/state/osmo5:/home/osmosis/.osmosisd
stars1:
image: stridezone:stars
volumes:
- ./scripts/state/stars1:/home/stars/.starsd
ports:
- "26257:26657"
- "1277:1317"
- "9050:9090"
stars2:
image: stridezone:stars
volumes:
- ./scripts/state/stars2:/home/stars/.starsd
stars3:
image: stridezone:stars
volumes:
- ./scripts/state/stars3:/home/stars/.starsd
stars4:
image: stridezone:stars
volumes:
- ./scripts/state/stars4:/home/stars/.starsd
stars5:
image: stridezone:stars
volumes:
- ./scripts/state/stars5:/home/stars/.starsd
hermes:
image: stridezone:hermes
volumes:
- ~/.hermes:/home/hermes/.hermes
- ./scripts/state/hermes/config.toml:/home/hermes/.hermes/config.toml
restart: always
relayer-host:
image: stridezone:relayer
volumes:
- ./scripts/state/relayer:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-host" ]
relayer-gaia:
image: stridezone:relayer
volumes:
- ./scripts/state/relayer:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-gaia" ]
relayer-juno:
image: stridezone:relayer
volumes:
- ./scripts/state/relayer:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-juno" ]
relayer-osmo:
image: stridezone:relayer
volumes:
- ./scripts/state/relayer:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-osmo" ]
relayer-stars:
image: stridezone:relayer
volumes:
- ./scripts/state/relayer:/home/relayer/.relayer
restart: always
command: [ "bash", "start.sh", "stride-stars" ]
icq:
image: stridezone:icq
volumes:
- ./scripts/state/icq:/home/icq/.icq
restart: always