-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.prod.yml
226 lines (216 loc) · 5.28 KB
/
docker-compose.prod.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
version: "3"
services:
zookeeper:
image: wurstmeister/zookeeper
container_name: zookeeper
restart: on-failure
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka
container_name: kafka
ports:
- "9092:9092"
environment:
KAFKA_ADVERTISED_HOST_NAME: kafka
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LOG_RETENTION_MS: 10000
KAFKA_LOG_RETENTION_CHECK_INTERVAL_MS: 5000
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- zookeeper
mysql:
image: mysql
container_name: mysql
ports:
- "3306:3306"
volumes:
- ./data/mysql:/var/lib/mysql:rw
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
- MYSQL_ROOT_PASSWORD=QPVYXdeVWbFP4YK6sLrd
- MYSQL_DATABASE=explanet_prod
- MYSQL_USER=explanet
- MYSQL_PASSWORD=QPVYXdeVWbFP4YK6sLrd
restart: on-failure
# healthcheck:
# test: ["CMD", "mysqladmin", "ping", "-h", "mysql", "-u$$MYSQL_USER", "-p$$MYSQL_ROOT_PASSWORD" ]
# interval: 30s
# timeout: 10s
# retries: 3
api-gateway:
container_name: api-gateway
ports:
- "80:80"
build:
context: ./api-gateway
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://api-gateway/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
chatting-service:
container_name: chatting-service
ports:
- "8080:8080"
build:
context: ./chatting-service
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://chatting-service:8080/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
- kafka
- api-gateway
chat-bot-service:
container_name: chat-bot-service
ports:
- "8081:8081"
build:
context: ./chat-bot-service
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://chat-bot-service:8081/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
- kafka
- api-gateway
base-service:
container_name: base-service
ports:
- "8082:8082"
build:
context: ./base-service
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://base-service:8082/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
- api-gateway
board-service:
container_name: board-service
ports:
- "8083:8083"
build:
context: ./board-service
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://board-service:8083/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
- kafka
- api-gateway
login-service:
container_name: login-service
ports:
- "8084:8084"
build:
context: ./login-service
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://login-service:8084/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
- api-gateway
mypage-service:
container_name: mypage-service
ports:
- "8085:8085"
build:
context: ./mypage-service
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://mypage-service:8085/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
- api-gateway
watcher-service:
container_name: watcher-service
ports:
- "8086:8086"
build:
context: ./watcher-service
args:
ENVIRONMENT: prod
dockerfile: Dockerfile
# healthcheck:
# test: [ "CMD", "curl", "-f", "http://watcher-service:8086/health-check" ]
# interval: 30s
# timeout: 10s
# retries: 3
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: on-failure
depends_on:
- mysql
- kafka
- api-gateway