forked from HydroProtocol/hydro-scaffold-dex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-localhost-source.yaml
207 lines (207 loc) · 6.42 KB
/
docker-compose-localhost-source.yaml
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
version: "3"
volumes:
datavolume: {}
services:
redis:
container_name: hydro-scaffold-dex-redis
image: redis:5.0
ports:
- 127.0.0.1:6379:6379
restart: always
logging: &logging_default
driver: "json-file"
options:
max-file: "5"
max-size: "200m"
compress: "true"
ethereum-node:
container_name: hydro-scaffold-dex-ethereum-node
image: hydroprotocolio/hydro-scaffold-dex-ethereum-node:latest
ports:
- 127.0.0.1:8545:8545
restart: always
logging:
<<: *logging_default
db:
container_name: hydro-scaffold-dex-pg
image: postgres
ports:
- 127.0.0.1:5432:5432
restart: always
volumes:
- datavolume:/var/lib/postgresql/data
- ./backend/db/migrations/0001-init.up.sql:/docker-entrypoint-initdb.d/0001-init.up.sql
- ./envs/localhost/seed.sql:/docker-entrypoint-initdb.d/0002-seed.sql
logging:
<<: *logging_default
web:
build: ./web
container_name: hydro-scaffold-dex-web
ports:
- 127.0.0.1:3000:8043
environment:
- CONFIG_VARS=REACT_APP_API_URL,REACT_APP_WS_URL,REACT_APP_NODE_URL,REACT_APP_HYDRO_PROXY_ADDRESS,REACT_APP_HYDRO_TOKEN_ADDRESS,REACT_APP_WETH_TOKEN_ADDRESS,REACT_APP_NETWORK_ID
- REACT_APP_API_URL=http://localhost:3001
- REACT_APP_WS_URL=ws://localhost:3002
- REACT_APP_NODE_URL=http://localhost:8545
- REACT_APP_HYDRO_PROXY_ADDRESS=0x04f67E8b7C39A25e100847Cb167460D715215FEb
- REACT_APP_HYDRO_TOKEN_ADDRESS=0x4c4fa7e8ea4cfcfc93deae2c0cff142a1dd3a218
- REACT_APP_WETH_TOKEN_ADDRESS=0x4a817489643A89a1428b2DD441c3fbe4DBf44789
- REACT_APP_NETWORK_ID=66
restart: always
logging:
<<: *logging_default
admin:
build: ./backend
container_name: hydro-scaffold-dex-admin-api
command: /bin/adminapi
ports:
- 127.0.0.1:3003:3003
environment:
- HSK_DATABASE_URL=postgres://postgres:postgres@db/postgres?sslmode=disable
- HSK_REDIS_URL=redis://redis:6379/0
- HSK_BLOCKCHAIN_RPC_URL=http://ethereum-node:8545
- HSK_LOG_LEVEL=ERROR
- WEB_HEALTH_CHECK_URL=http://web:8043
- API_HEALTH_CHECK_URL=http://api:4001/metrics
- ENGINE_HEALTH_CHECK_URL=http://engine:4004/metrics
- LAUNCHER_HEALTH_CHECK_URL=http://launcher:4005/metrics
- WATCHER_HEALTH_CHECK_URL=http://watcher:4003/metrics
- WEBSOCKET_HEALTH_CHECK_URL=http://ws:4002/metrics
- HSK_PROXY_ADDRESS=0x04f67e8b7c39a25e100847cb167460d715215feb
- HSK_RELAYER_ADDRESS=0x93388b4efe13b9b18ed480783c05462409851547
volumes:
- datavolume:/data
depends_on:
- db
- redis
- ethereum-node
restart: always
logging:
<<: *logging_default
api:
build: ./backend
container_name: hydro-scaffold-dex-api
command: /bin/api
ports:
- 127.0.0.1:3001:3001
- 127.0.0.1:4001:4001
environment:
- HSK_DATABASE_URL=postgres://postgres:postgres@db/postgres?sslmode=disable
- HSK_REDIS_URL=redis://redis:6379/0
- HSK_HYBRID_EXCHANGE_ADDRESS=0x5c0286bef1434b07202a5ae3de38e66130d5280d
- HSK_BLOCKCHAIN_RPC_URL=http://ethereum-node:8545
- HSK_HYDRO_TOKEN_ADDRESS=0x4c4fa7e8ea4cfcfc93deae2c0cff142a1dd3a218
- HSK_PROXY_ADDRESS=0x04f67e8b7c39a25e100847cb167460d715215feb
- HSK_RELAYER_ADDRESS=0x93388b4efe13b9b18ed480783c05462409851547
- HSK_LOG_LEVEL=DEBUG
- METRICS_PORT=4001
volumes:
- datavolume:/data
depends_on:
- db
- redis
- ethereum-node
restart: always
logging:
<<: *logging_default
ws:
build: ./backend
container_name: hydro-scaffold-dex-ws
command: /bin/websocket
ports:
- 127.0.0.1:3002:3002
- 127.0.0.1:4002:4002
environment:
- HSK_API_URL=http://api:3001
- HSK_REDIS_URL=redis://redis:6379/0
- HSK_LOG_LEVEL=DEBUG
- METRICS_PORT=4002
volumes:
- datavolume:/data
depends_on:
- redis
- api
restart: always
logging:
<<: *logging_default
watcher:
build: ./backend
container_name: hydro-scaffold-dex-watcher
command: /bin/watcher
ports:
- 127.0.0.1:4003:4003
environment:
- HSK_DATABASE_URL=postgres://postgres:postgres@db/postgres?sslmode=disable
- HSK_REDIS_URL=redis://redis:6379/0
- HSK_BLOCKCHAIN_RPC_URL=http://ethereum-node:8545
- HSK_LOG_LEVEL=DEBUG
- HSK_HYBRID_EXCHANGE_ADDRESS=0x5c0286bef1434b07202a5ae3de38e66130d5280d
- METRICS_PORT=4003
volumes:
- datavolume:/data
depends_on:
- redis
- ethereum-node
- db
restart: always
logging:
<<: *logging_default
engine:
build: ./backend
container_name: hydro-scaffold-dex-engine
command: /bin/engine
environment:
- HSK_DATABASE_URL=postgres://postgres:postgres@db/postgres?sslmode=disable
- HSK_REDIS_URL=redis://redis:6379/0
- HSK_HYBRID_EXCHANGE_ADDRESS=0x5c0286bef1434b07202a5ae3de38e66130d5280d
- HSK_PROXY_ADDRESS=0x04f67e8b7c39a25e100847cb167460d715215feb
- HSK_LOG_LEVEL=DEBUG
- METRICS_PORT=4004
volumes:
- datavolume:/data
depends_on:
- redis
- db
restart: always
logging:
<<: *logging_default
launcher:
build: ./backend
container_name: hydro-scaffold-dex-launcher
command: /bin/launcher
environment:
- HSK_DATABASE_URL=postgres://postgres:postgres@db/postgres?sslmode=disable
- HSK_BLOCKCHAIN_RPC_URL=http://ethereum-node:8545
- HSK_HYBRID_EXCHANGE_ADDRESS=0x5c0286bef1434b07202a5ae3de38e66130d5280d
- HSK_RELAYER_ADDRESS=0x93388b4efe13b9b18ed480783c05462409851547
- HSK_RELAYER_PK=95b0a982c0dfc5ab70bf915dcf9f4b790544d25bc5e6cff0f38a59d0bba58651
- HSK_LOG_LEVEL=DEBUG
- METRICS_PORT=4005
volumes:
- datavolume:/data
depends_on:
- ethereum-node
- db
restart: always
logging:
<<: *logging_default
maker:
image: hydroprotocolio/amm-bots
container_name: hydro-scaffold-dex-maker
depends_on:
- api
environment:
- BOT_TYPE=CONST_PRODUCT
- BOT_PRIVATE_KEY=0xa6553a3cbade744d6c6f63e557345402abd93e25cd1f1dba8bb0d374de2fcf4f
- BOT_BASE_TOKEN=HOT
- BOT_QUOTE_TOKEN=DAI
- BOT_BASE_URL=http://api:3001
- BOT_MIN_PRICE=0.8
- BOT_MAX_PRICE=1.2
- BOT_PRICE_GAP=0.02
- BOT_EXPAND_INVENTORY=2
- BOT_WEB3_URL=http://ethereum-node:8545
restart: on-failure:10
logging:
<<: *logging_default