-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduction.yml
211 lines (197 loc) · 5.08 KB
/
production.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
volumes:
redis_data: {}
services:
web:
build:
context: .
dockerfile: compose/web/production/Dockerfile
image: exchange_radar_web
container_name: exchange-radar-web
env_file:
- ./.envs/.production/.web
- ./.envs/.production/.redis
environment:
- WORKERS=1
depends_on:
- redis
ports:
- "9000:9000"
command: /start
rabbitmq:
image: rabbitmq:3.12.13-management-alpine
container_name: exchange-radar-rabbitmq
env_file:
- ./.envs/.production/.rabbitmq
ports:
- "5672:5672"
- "15672:15672"
volumes:
- ./compose/rabbitmq/rabbitmq.conf:/etc/rabbitmq/conf.d/10-defaults.conf:ro
- ./compose/rabbitmq/rabbitmq-definitions.json:/etc/rabbitmq/definitions.json:ro
redis:
image: redis/redis-stack-server:latest
container_name: exchange-radar-redis
restart: always
ports:
- "6379:6379"
volumes:
- redis_data:/data
scheduler:
build:
context: .
dockerfile: compose/scheduler/production/Dockerfile
image: exchange_radar_scheduler
container_name: exchange-radar-scheduler
env_file:
- ./.envs/.production/.redis
- ./.envs/.production/.scheduler
depends_on:
- redis
command: /start
producer-binance:
build:
context: .
dockerfile: compose/producer/binance/Dockerfile
image: exchange_radar_producer_binance
container_name: exchange-radar-producer-binance
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-kucoin:
build:
context: .
dockerfile: compose/producer/kucoin/Dockerfile
image: exchange_radar_producer_kucoin
container_name: exchange-radar-producer-kucoin
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-coinbase:
build:
context: .
dockerfile: compose/producer/coinbase/Dockerfile
image: exchange_radar_producer_coinbase
container_name: exchange-radar-producer-coinbase
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-kraken:
build:
context: .
dockerfile: compose/producer/kraken/Dockerfile
image: exchange_radar_producer_kraken
container_name: exchange-radar-producer-kraken
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-okx:
build:
context: .
dockerfile: compose/producer/okx/Dockerfile
image: exchange_radar_producer_okx
container_name: exchange-radar-producer-okx
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-bybit:
build:
context: .
dockerfile: compose/producer/bybit/Dockerfile
image: exchange_radar_producer_bybit
container_name: exchange-radar-producer-bybit
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-bitstamp:
build:
context: .
dockerfile: compose/producer/bitstamp/Dockerfile
image: exchange_radar_producer_bitstamp
container_name: exchange-radar-producer-bitstamp
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-mexc:
build:
context: .
dockerfile: compose/producer/mexc/Dockerfile
image: exchange_radar_producer_mexc
container_name: exchange-radar-producer-mexc
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
producer-htx:
build:
context: .
dockerfile: compose/producer/htx/Dockerfile
image: exchange_radar_producer_htx
container_name: exchange-radar-producer-htx
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.producer
- ./.envs/.production/.redis
depends_on:
- rabbitmq
- redis
command: /start
restart: always
consumer:
build:
context: .
dockerfile: compose/consumer/Dockerfile
image: exchange_radar_consumer
env_file:
- ./.envs/.production/.rabbitmq
- ./.envs/.production/.consumer
depends_on:
- rabbitmq
- web
command: /start