-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
122 lines (117 loc) · 2.88 KB
/
Copy pathdocker-compose.yml
File metadata and controls
122 lines (117 loc) · 2.88 KB
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
volumes:
mars-apps:
driver: local
mars-data:
driver: local
venus-apps:
driver: local
venus-data:
driver: local
services:
relayer:
image: ghcr.io/allinbits/ibc-v2-ts-relayer:dev
container_name: ts-relayer
entrypoint: ["/entrypoint.d/entrypoint.sh"]
command: ["ibc-v2-ts-relayer", "relay"]
build:
context: .
environment:
NODE_ENV: production
volumes:
- ./docker/relayer/entrypoint.d:/entrypoint.d
cap_add:
- IPC_LOCK
depends_on:
mars:
condition: service_healthy
venus:
condition: service_healthy
mars:
image: ghcr.io/allinbits/ibc-v2-ts-relayer/mars
build:
context: ./docker/chains
dockerfile: mars/Dockerfile
restart: unless-stopped
container_name: mars
working_dir: /apps/mars
tty: true
ports:
# - "26656:26656"
- "26657:26657"
- "1317:1317"
# volumes:
# - mars-apps:/apps
# - mars-data:/home/tendermint
# - ./docker/chains/mars/config.yml:/config.yaml
environment:
DO_NOT_TRACK: "1"
RELAYER_MNEMONIC: ${RELAYER_MNEMONIC}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:26657/status"]
interval: 5s
timeout: 10s
retries: 3
start_period: 300s
venus:
image: ghcr.io/allinbits/ibc-v2-ts-relayer/venus
build:
context: ./docker/chains
dockerfile: venus/Dockerfile
restart: unless-stopped
container_name: venus
working_dir: /apps/venus
tty: true
ports:
# - "26656:26656"
- "36657:26657"
- "2317:1317"
# volumes:
# - venus-apps:/apps
# - venus-data:/home/tendermint
# - ./docker/chains/venus/config.yml:/config.yaml
environment:
DO_NOT_TRACK: "1"
RELAYER_MNEMONIC: ${RELAYER_MNEMONIC}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:26657/status"]
interval: 5s
timeout: 10s
retries: 3
start_period: 300s
gno:
image: ghcr.io/allinbits/ibc-v2-ts-relayer/gno
build:
context: ./docker/chains/gno
restart: unless-stopped
container_name: gno
tty: false
ports:
- "46657:26657"
- "8888:8888"
- "8546:8546"
environment:
GNO_RELAYER_ADDRESS: ${GNO_RELAYER_ADDRESS}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:26657/status"]
interval: 5s
timeout: 10s
retries: 3
start_period: 300s
a1gno:
image: ghcr.io/allinbits/ibc-v2-ts-relayer/a1gno
build:
context: ./docker/chains/a1gno
restart: unless-stopped
container_name: a1gno
tty: true
ports:
- "56657:26657"
- "3317:1317"
environment:
ATOMONE_RELAYER_ADDRESS: ${ATOMONE_RELAYER_ADDRESS}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:26657/status"]
interval: 5s
timeout: 10s
retries: 3
start_period: 300s