forked from News-Deliver/Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
260 lines (247 loc) · 6.44 KB
/
docker-compose.yml
File metadata and controls
260 lines (247 loc) · 6.44 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
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
version: '3.8'
services:
springboot:
build:
context: ./SpringBoot
dockerfile: Dockerfile
container_name: springboot
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
compress: "true"
environment:
- TZ=Asia/Seoul
- SPRING_PROFILES_ACTIVE=dev
- DB_SERVER=${DB_SERVER}
- DB_PORT=${DB_PORT}
- DB_USER=${DB_USER}
- DB_PASS=${DB_PASS}
- REDIS_CACHE_HOST=${REDIS_CACHE_HOST}
- REDIS_CACHE_PORT=${REDIS_CACHE_PORT}
- REDIS_SESSION1_HOST=${REDIS_SESSION1_HOST}
- REDIS_SESSION1_PORT=${REDIS_SESSION1_PORT}
- REDIS_SESSION2_HOST=${REDIS_SESSION2_HOST}
- REDIS_SESSION2_PORT=${REDIS_SESSION2_PORT}
- JWT_SECRET_KEY=${JWT_SECRET_KEY}
- OPENAI_API_KEY=${OPENAI_API_KEY}
- KAKAO_CLIENT_ID=${KAKAO_CLIENT_ID}
- KAKAO_CLIENT_SECRET=${KAKAO_CLIENT_SECRET}
- DEEPSEARCH_API_KEY=${DEEPSEARCH_API_KEY}
- ELASTICSEARCH_SERVER=${ELASTICSEARCH_SERVER}
- ELASTICSEARCH_PORT=${ELASTICSEARCH_PORT}
- BASE_URL=${BASE_URL}
- BACKEND_DOMAIN=${BACKEND_DOMAIN}
- FRONTEND_DOMAIN=${FRONTEND_DOMAIN}
ports:
- "8080:8080"
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
depends_on:
# mysql 의존성 제거 - RDS 사용으로 인해 불필요
redis-cache:
condition: service_started
redis-session1:
condition: service_started
redis-session2:
condition: service_started
networks:
- backend
# MySQL 서비스 제거 - RDS 사용
# mysql:
# image: mysql:8.0
# container_name: mysql
# logging:
# driver: "json-file"
# options:
# max-size: "10m"
# max-file: "3"
# environment:
# - TZ=Asia/Seoul
# - MYSQL_ROOT_PASSWORD=${DB_PASS}
# - MYSQL_DATABASE=backendDB
# command: ["mysqld", "--default-time-zone=+09:00"]
# ports:
# - "3306:3306"
# healthcheck:
# test: [ "CMD", "mysqladmin", "ping", "-h", "localhost" ]
# interval: 10s
# timeout: 5s
# retries: 5
# volumes:
# - mysql-data:/var/lib/mysql
# - /etc/localtime:/etc/localtime:ro
# - /etc/timezone:/etc/timezone:ro
# networks:
# - backend
redis-cache:
image: redis:7.2
container_name: redis-cache
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
environment:
- TZ=Asia/Seoul
ports:
- "6379:6379"
volumes:
- redis-cache-data:/data
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
networks:
- backend
redis-session1:
image: redis:7.2
container_name: redis-session1
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
command: redis-server /usr/local/etc/redis/redis.conf
environment:
- TZ=Asia/Seoul
ports:
- "6380:6379"
volumes:
- redis-session1-data:/data
- ./redis/redis-session1.conf:/usr/local/etc/redis/redis.conf
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
networks:
- backend
redis-session2:
image: redis:7.2
container_name: redis-session2
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
command: redis-server /usr/local/etc/redis/redis.conf
environment:
- TZ=Asia/Seoul
ports:
- "6381:6379"
volumes:
- redis-session2-data:/data
- ./redis/redis-session2.conf:/usr/local/etc/redis/redis.conf
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
networks:
- backend
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.0
container_name: elasticsearch
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
environment:
- TZ=Asia/Seoul
- discovery.type=single-node
- xpack.security.enabled=false
- xpack.security.transport.ssl.enabled=false
- ES_JAVA_OPTS=-Xms512m -Xmx512m
ports:
- "9200:9200"
- "9300:9300"
networks:
- backend
volumes:
- ./ElasticSearch/stopwords.txt:/usr/share/elasticsearch/config/stopwords.txt
- es-data:/usr/share/elasticsearch/data
- es-plugins:/usr/share/elasticsearch/plugins
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
# Prometheus/Grafana - 메모리 부하로 인해 주석 처리 (CloudWatch 사용 예정)
prometheus:
image: prom/prometheus:latest
container_name: prometheus
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
volumes:
- ./monitoring/prometheus.yml:/etc/prometheus/prometheus.yml:ro
- prometheus-data:/prometheus
ports:
- "9090:9090"
networks:
- backend
grafana:
image: grafana/grafana:latest
container_name: grafana
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
ports:
- "3000:3000"
networks:
- backend
volumes:
- grafana-data:/var/lib/grafana
redis-exporter:
image: oliver006/redis_exporter
container_name: redis-exporter
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "1"
command:
- '--redis.addr=redis://redis-cache:6379'
ports:
- "9121:9121"
depends_on:
- redis-cache
networks:
- backend
redis-session1-exporter:
image: oliver006/redis_exporter
container_name: redis-session1-exporter
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "1"
command:
- '--redis.addr=redis://redis-session1:6379'
ports:
- "9122:9121"
networks:
- backend
redis-session2-exporter:
image: oliver006/redis_exporter
container_name: redis-session2-exporter
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "1"
command:
- '--redis.addr=redis://redis-session2:6379'
ports:
- "9123:9121"
networks:
- backend
volumes:
# mysql-data: # RDS 사용으로 인해 불필요
redis-cache-data:
redis-session1-data:
redis-session2-data:
es-data:
es-plugins:
prometheus-data: # Prometheus 제거로 인해 불필요
grafana-data: # Grafana 제거로 인해 불필요
networks:
backend:
driver: bridge