-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
237 lines (226 loc) · 7.24 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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
version: '3.7'
###############################################################
# Current Port Allocation:
# user 5010:5010
# trading 5020:5020
# alerting 5030:5030
# stock 6010:6010
# news 6020:6020
###############################################################
volumes:
pgdata:
networks:
kong-net:
broker_network:
driver: "bridge"
services:
rabbitmq:
image: earnestng/esd_stock:rabbitmq
container_name: rabbitmq
# ports:
# - "5673:5672"
# - "15673:15672"
networks:
- broker_network
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
############################################################
## if we want to run a database inside our docker :)
# db:
# image: mysql
# ports:
# - "3308:3306"
# expose:
# - '3308'
# volumes:
# - ./sql-files:/docker-entrypoint-initdb.d
############################################################
user:
#build: ./user/
image: earnestng/esd_stock:user
networks:
- kong-net
container_name: user1
environment:
# - "dbURL=mysql+mysqlconnector://root:root@host.docker.internal:3306/user" # for mac
- "dbURL=mysql+mysqlconnector://root@host.docker.internal:3306/user" # for windows
ports:
- "5010:5010"
user2:
#build: ./user/
image: earnestng/esd_stock:user
networks:
- kong-net
container_name: user2
environment:
# - "dbURL=mysql+mysqlconnector://root:root@host.docker.internal:3306/user" # for mac
- "dbURL=mysql+mysqlconnector://root@host.docker.internal:3306/user" # for windows
trading:
#build: ./trading/
image: earnestng/esd_stock:trading
networks:
- kong-net
container_name: trading1
environment:
# - "dbURL=mysql+mysqlconnector://root:root@host.docker.internal:3306/transaction" # for mac
- "dbURL=mysql+mysqlconnector://root@host.docker.internal:3306/transaction" # for windows
ports:
- "5020:5020"
trading2:
image: earnestng/esd_stock:trading
networks:
- kong-net
container_name: trading2
environment:
# - "dbURL=mysql+mysqlconnector://root:root@host.docker.internal:3306/transaction" # for mac
- "dbURL=mysql+mysqlconnector://root@host.docker.internal:3306/transaction" # for windows
alerting:
#build: ./alerting/
image: earnestng/esd_stock:alerting
networks:
- kong-net
container_name: alerting1
environment:
# - "dbURL=mysql+mysqlconnector://root:root@host.docker.internal:3306/alert" # for mac
- "dbURL=mysql+mysqlconnector://root@host.docker.internal:3306/alert" # for windows
ports:
- "5030:5030"
stock:
#build: ./stock/
image: earnestng/esd_stock:stock
networks:
- kong-net
container_name: stock1
environment:
# - "dbURL=mysql+mysqlconnector://root:root@host.docker.internal:3306/stock" # for mac
- "dbURL=mysql+mysqlconnector://root@host.docker.internal:3306/stock" # for windows
ports:
- "6010:6010"
news:
#build: ./news/
image: earnestng/esd_stock:news
networks:
- kong-net
container_name: news1
environment:
# - "dbURL=mysql+mysqlconnector://root:root@host.docker.internal:3306/news" # for mac
- "dbURL=mysql+mysqlconnector://root@host.docker.internal:3306/news" # for windows
ports:
- "6020:6020"
#######################################
# Postgres: The database used by Kong
#######################################
kong-database:
image: postgres:9.6
container_name: kong-database
restart: on-failure
networks:
- kong-net
volumes:
- pgdata:/var/lib/postgresql/data
environment:
POSTGRES_USER: kong
POSTGRES_PASSWORD: password
POSTGRES_DB: kong
ports:
- "5432:5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "kong"]
interval: 30s
timeout: 30s
retries: 3
#######################################
# Kong database migration
#######################################
kong-migration:
image: kong
command: kong migrations bootstrap
networks:
- kong-net
restart: on-failure
environment:
KONG_DATABASE: postgres
KONG_PG_HOST: kong-database
KONG_PG_USER: kong
KONG_PG_PASSWORD: password
depends_on:
- kong-database
#######################################
# Kong: The API Gateway
#######################################
kong:
image: kong
restart: on-failure
container_name: kong
networks:
- kong-net
environment:
KONG_DATABASE: postgres
KONG_PG_HOST: kong-database
KONG_PG_USER: kong
KONG_PG_PASSWORD: password
KONG_PROXY_LISTEN: 0.0.0.0:8000
KONG_PROXY_LISTEN_SSL: 0.0.0.0:8443
KONG_ADMIN_LISTEN: 0.0.0.0:8001
depends_on:
- kong-database
healthcheck:
test: ["CMD", "kong", "health"]
interval: 10s
timeout: 10s
retries: 10
ports:
- "8000:8000"
- "8001:8001"
- "8443:8443"
- "8444:8444"
# plugins:
# name: cors
# service: edutrade.trading
# config:
# origins:
# - '*'
# methods:
# - GET
# - POST
# headers:
# - Accept
# - Accept-Version
# - Content-Length
# - Content-MD5
# - Content-Type
# - Date
# - X-Auth-Token
# exposed_headers:
# - X-Auth-Token
# credentials: true
# max_age: 3600
#######################################
# Konga database prepare
#######################################
konga-prepare:
image: pantsel/konga
command: "-c prepare -a postgres -u postgresql://kong:password@kong-database:5432/konga"
networks:
- kong-net
restart: on-failure
depends_on:
- kong-database
#######################################
# Konga: Kong GUI
#######################################
konga:
image: pantsel/konga
container_name: konga
restart: always
networks:
- kong-net
environment:
DB_ADAPTER: postgres
DB_URI: postgresql://kong:password@kong-database:5432/konga
NODE_ENV: production
depends_on:
- kong-database
ports:
- "1337:1337"