forked from Stride-Labs/stride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
118 lines (117 loc) · 2.59 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
version: "3.8"
services:
stride1:
# image: stridezone/stride:latest
image: stridezone:stride
hostname: stride
volumes:
- ./scripts/state/stride1:/stride/.strided
# command:
# - /bin/sh
# stdin_open: true # docker run -i
# tty: true # docker run -t
ports:
- "26655:26657"
- "26650:1317"
build:
context: .
dockerfile: Dockerfile.stride
stride2:
# image: stridezone/stride:latest
image: stridezone:stride
hostname: stride
volumes:
- ./scripts/state/stride2:/stride/.strided
ports:
- "26656:26657"
- "26651:1317"
build:
context: .
dockerfile: Dockerfile.stride
stride3:
# image: stridezone/stride:latest
image: stridezone:stride
hostname: stride
volumes:
- ./scripts/state/stride3:/stride/.strided
ports:
- "26657:26657"
- "1317:1317"
build:
context: .
dockerfile: Dockerfile.stride
# now run Gaia nodes
gaia1:
# image: stridezone/stride:latest
image: stridezone:gaia
hostname: stride
volumes:
- ./scripts/state/gaia1:/gaia/.gaiad
ports:
- "26662:26657"
- "26661:1317"
# command:
# - /bin/sh
# stdin_open: true # docker run -i
# tty: true # docker run -t
build:
context: .
dockerfile: Dockerfile.gaia
gaia2:
# image: stridezone/stride:latest
image: stridezone:gaia
hostname: stride
volumes:
- ./scripts/state/gaia2:/gaia/.gaiad
ports:
- "26659:26657"
build:
context: .
dockerfile: Dockerfile.gaia
gaia3:
# image: stridezone/stride:latest
image: stridezone:gaia
hostname: stride
volumes:
- ./scripts/state/gaia3:/gaia/.gaiad
ports:
- "26660:26657"
build:
context: .
dockerfile: Dockerfile.gaia
hermes:
image: stridezone:hermes
hostname: stride
volumes:
- ./scripts/config/hermes.toml:/tmp/hermes.toml
- ./scripts/state:/hermes/.hermes/keys
# - ./scripts:/tmp
# - ./data/hermes:/hermes/.hermes
command:
- hermes
- -c
- /tmp/hermes.toml
- start
restart: always
ports:
- "3001:3001"
build:
context: .
dockerfile: Dockerfile.hermes
icq:
image: stridezone:interchain-queries
volumes:
- ./scripts/state/ICQ:/icq/.icq
command:
- interchain-queries
- run
restart: always
build:
context: .
dockerfile: Dockerfile.icq
# logging:
# driver: "local"
# options:
# max-size: 10m
# max-file: "3"
# env: "os"