-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
441 lines (428 loc) · 10.9 KB
/
Copy pathdocker-compose.yml
File metadata and controls
441 lines (428 loc) · 10.9 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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
networks:
teachlink:
driver: bridge
volumes:
postgres-data:
redis-data:
elasticsearch-data:
prometheus-data:
alertmanager-data:
grafana-data:
kibana-data:
services:
app:
build:
context: ../..
dockerfile: Dockerfile
target: production
container_name: teachlink-app
restart: unless-stopped
ports:
- '${APP_PORT:-3000}:3000'
env_file:
- ../../.env
environment:
DATABASE_HOST: postgres
DATABASE_PORT: 5432
REDIS_HOST: redis
REDIS_PORT: 6379
ELASTICSEARCH_NODE: http://elasticsearch:9200
NODE_ENV: production
JAEGER_AGENT_HOST: jaeger
JAEGER_AGENT_PORT: 6831
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
jaeger:
condition: service_started
networks:
- teachlink
# ── Runtime security hardening ──────────────────────────────────────────
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
read_only: true
tmpfs:
- /app/tmp:size=64m,mode=1777
- /tmp:size=32m,mode=1777
deploy:
resources:
limits:
cpus: '1.0'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
healthcheck:
test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:3000/health']
interval: 30s
timeout: 10s
retries: 5
start_period: 30s
# ─── Jaeger Tracing ─────────────────────────────────────────────────────────
jaeger:
image: jaegertracing/all-in-one:1.48
container_name: teachlink-jaeger
restart: unless-stopped
ports:
- '6831:6831/udp'
- '16686:16686'
networks:
- teachlink
environment:
COLLECTOR_ZIPKIN_HTTP_PORT: 9411
healthcheck:
test: ['CMD-SHELL', 'curl -f http://localhost:16686/jaeger/api/v1/services || exit 1']
interval: 30s
timeout: 10s
retries: 5
start_period: 15s
deploy:
resources:
limits:
cpus: '0.25'
memory: 128M
reservations:
cpus: '0.05'
memory: 32M
postgres:
image: postgres:16-alpine
container_name: teachlink-postgres
restart: unless-stopped
ports:
- '${DATABASE_PORT:-5432}:5432'
environment:
POSTGRES_USER: ${DATABASE_USER:-postgres}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD:-postgres}
POSTGRES_DB: ${DATABASE_NAME:-teachlink}
PGDATA: /var/lib/postgresql/data/pgdata
networks:
- teachlink
volumes:
- postgres-data:/var/lib/postgresql/data
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
cap_add:
- CHOWN
- FOWNER
- SETUID
- SETGID
deploy:
resources:
limits:
cpus: '1.0'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U ${DATABASE_USER:-postgres} -d ${DATABASE_NAME:-teachlink}']
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
redis:
image: redis:7-alpine
container_name: teachlink-redis
restart: unless-stopped
ports:
- '${REDIS_PORT:-6379}:6379'
command: >
redis-server
--appendonly yes
--appendfsync everysec
--maxmemory 256mb
--maxmemory-policy allkeys-lru
networks:
- teachlink
volumes:
- redis-data:/data
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M
reservations:
cpus: '0.1'
memory: 64M
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
interval: 10s
timeout: 5s
retries: 5
start_period: 5s
elasticsearch:
image: elasticsearch:8.13.4
container_name: teachlink-elasticsearch
restart: unless-stopped
ports:
- '9200:9200'
environment:
discovery.type: single-node
xpack.security.enabled: 'false'
ES_JAVA_OPTS: '-Xms512m -Xmx512m'
cluster.name: teachlink-cluster
networks:
- teachlink
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
cap_add:
- CHOWN
- SETUID
- SETGID
deploy:
resources:
limits:
cpus: '1.0'
memory: 1G
reservations:
cpus: '0.25'
memory: 512M
healthcheck:
test:
[
'CMD-SHELL',
'curl -s http://localhost:9200/_cluster/health | grep -qv "\"status\":\"red\""',
]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
prometheus:
image: prom/prometheus:latest
container_name: teachlink-prometheus
restart: unless-stopped
ports:
- '9090:9090'
command:
- --config.file=/etc/prometheus/prometheus.yml
- --storage.tsdb.retention.time=15d
- --web.enable-lifecycle
extra_hosts:
- 'host.docker.internal:host-gateway'
networks:
- teachlink
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
- ./alerts.yml:/etc/prometheus/alerts.yml:ro
- prometheus-data:/prometheus
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M
reservations:
cpus: '0.1'
memory: 64M
healthcheck:
test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:9090/-/healthy']
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
alertmanager:
image: prom/alertmanager:latest
container_name: teachlink-alertmanager
restart: unless-stopped
ports:
- '9093:9093'
command:
- --config.file=/etc/alertmanager/alertmanager.yml
- --storage.path=/alertmanager
networks:
- teachlink
volumes:
- ./alertmanager.yml:/etc/alertmanager/alertmanager.yml:ro
- alertmanager-data:/alertmanager
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
deploy:
resources:
limits:
cpus: '0.25'
memory: 128M
reservations:
cpus: '0.05'
memory: 32M
healthcheck:
test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:9093/-/healthy']
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
grafana:
image: grafana/grafana:latest
container_name: teachlink-grafana
restart: unless-stopped
ports:
- '3001:3000'
environment:
- GF_SECURITY_ADMIN_USER=${GRAFANA_ADMIN_USER:-admin}
- GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_ADMIN_PASSWORD:-admin}
- GF_USERS_ALLOW_SIGN_UP=false
networks:
- teachlink
volumes:
- grafana-data:/var/lib/grafana
- ./provisioning:/etc/grafana/provisioning:ro
depends_on:
prometheus:
condition: service_healthy
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M
reservations:
cpus: '0.1'
memory: 64M
healthcheck:
test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:3000/api/health']
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
redis_exporter:
image: oliver006/redis_exporter:latest
container_name: teachlink-redis-exporter
restart: unless-stopped
ports:
- '9121:9121'
environment:
REDIS_ADDR: 'redis://redis:6379'
networks:
- teachlink
depends_on:
redis:
condition: service_healthy
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
deploy:
resources:
limits:
cpus: '0.1'
memory: 64M
postgres_exporter:
image: prometheuscommunity/postgres-exporter:latest
container_name: teachlink-postgres-exporter
restart: unless-stopped
ports:
- '9187:9187'
environment:
DATA_SOURCE_NAME: 'postgresql://${DATABASE_USER:-postgres}:${DATABASE_PASSWORD:-postgres}@postgres:5432/${DATABASE_NAME:-teachlink}?sslmode=disable'
networks:
- teachlink
depends_on:
postgres:
condition: service_healthy
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
deploy:
resources:
limits:
cpus: '0.1'
memory: 64M
# ─── Log Search UI ──────────────────────────────────────────────────────────
kibana:
image: kibana:${KIBANA_VERSION:-8.13.4}
container_name: teachlink-kibana
restart: unless-stopped
ports:
- '${KIBANA_PORT:-5601}:5601'
environment:
ELASTICSEARCH_HOSTS: 'http://elasticsearch:9200'
TELEMETRY_ENABLED: 'false'
SERVER_NAME: 'teachlink-kibana'
networks:
- teachlink
volumes:
- kibana-data:/usr/share/kibana/data
depends_on:
elasticsearch:
condition: service_healthy
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
cap_add:
- CHOWN
- SETUID
- SETGID
deploy:
resources:
limits:
cpus: '0.5'
memory: 512M
reservations:
cpus: '0.1'
memory: 128M
healthcheck:
test:
[
'CMD-SHELL',
'curl -s http://localhost:5601/api/status | grep -q "\"overall\":{\"level\":\"available\""',
]
interval: 30s
timeout: 10s
retries: 10
start_period: 120s
# ─── Log Shipper (container stdout → Elasticsearch) ─────────────────────────
filebeat:
image: elastic/filebeat:${FILEBEAT_VERSION:-8.13.4}
container_name: teachlink-filebeat
restart: unless-stopped
user: root
networks:
- teachlink
volumes:
- ../../logging/shipper/filebeat.yml:/usr/share/filebeat/filebeat.yml:ro
- /var/lib/docker/containers:/var/lib/docker/containers:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
depends_on:
elasticsearch:
condition: service_healthy
environment:
ELASTICSEARCH_NODE: 'http://elasticsearch:9200'
ELASTICSEARCH_USERNAME: '${ELASTICSEARCH_USERNAME:-}'
ELASTICSEARCH_PASSWORD: '${ELASTICSEARCH_PASSWORD:-}'
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
cap_add:
- DAC_READ_SEARCH
deploy:
resources:
limits:
cpus: '0.25'
memory: 128M
reservations:
cpus: '0.05'
memory: 32M