-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
417 lines (399 loc) · 13.3 KB
/
Copy pathdocker-compose.yml
File metadata and controls
417 lines (399 loc) · 13.3 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
volumes:
postgres_data:
prometheus_data:
grafana_data:
loki_data:
backup_data:
services:
# ── Database ─────────────────────────────────────
postgres:
image: postgres:16-alpine
container_name: exeos-postgres
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
volumes:
- postgres_data:/var/lib/postgresql/data
- ./postgres/init.sql:/docker-entrypoint-initdb.d/init.sql:ro
ports:
- "127.0.0.1:5432:5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "${POSTGRES_USER}"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "2", memory: "2G" }
reservations: { cpus: "0.5", memory: "256M" }
postgres-exporter:
image: prometheuscommunity/postgres-exporter:latest
container_name: exeos-pg-exporter
environment:
DATA_SOURCE_NAME: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?sslmode=disable
ports:
- "127.0.0.1:9187:9187"
depends_on: { postgres: { condition: service_healthy } }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.2", memory: "64M" }
# ── Cache ────────────────────────────────────────
redis:
image: redis:7-alpine
container_name: exeos-redis
command: ["redis-server", "--requirepass", "${REDIS_PASSWORD}", "--appendonly", "no"]
ports:
- "127.0.0.1:6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "-a", "${REDIS_PASSWORD}", "ping"]
interval: 5s
timeout: 3s
retries: 5
start_period: 5s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "512M" }
reservations: { cpus: "0.25", memory: "128M" }
redis-exporter:
image: oliver006/redis_exporter:latest
container_name: exeos-redis-exporter
environment:
REDIS_ADDR: redis://redis:6379
REDIS_PASSWORD: ${REDIS_PASSWORD}
ports:
- "127.0.0.1:9121:9121"
depends_on: { redis: { condition: service_healthy } }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.2", memory: "64M" }
# ── Message Broker ───────────────────────────────
zookeeper:
image: confluentinc/cp-zookeeper:7.6.1
container_name: exeos-zookeeper
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
healthcheck:
test: ["CMD", "nc", "-z", "127.0.0.1", "2181"]
interval: 10s
timeout: 3s
retries: 5
start_period: 20s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.3", memory: "256M" }
reservations: { cpus: "0.1", memory: "128M" }
kafka:
image: confluentinc/cp-kafka:7.6.1
container_name: exeos-kafka
depends_on:
zookeeper: { condition: service_healthy }
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://127.0.0.1:9092
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_LOG_RETENTION_HOURS: 168
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true"
ports:
- "127.0.0.1:9092:9092"
healthcheck:
test: ["CMD", "nc", "-z", "127.0.0.1", "9092"]
interval: 10s
timeout: 3s
retries: 5
start_period: 30s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "512M" }
reservations: { cpus: "0.25", memory: "256M" }
# ── API Gateway ──────────────────────────────────
apisix:
image: apache/apisix:3.17.0-debian
container_name: exeos-apisix
ports:
- "80:9080"
- "443:9443"
- "127.0.0.1:9091:9091"
volumes:
- ./apisix/config.yaml:/usr/local/apisix/conf/config.yaml
- ./apisix/apisix.yaml:/usr/local/apisix/conf/apisix.yaml:ro
- ./certs/tls.crt:/usr/local/apisix/conf/cert/tls.crt:ro
- ./certs/tls.key:/usr/local/apisix/conf/cert/tls.key:ro
environment:
JWT_SECRET: ${JWT_SECRET}
API_KEY: ${API_KEY}
REDIS_PASSWORD: ${REDIS_PASSWORD}
CORS_ORIGINS: ${CORS_ORIGINS}
depends_on:
redis: { condition: service_healthy }
healthcheck:
test: ["CMD", "curl", "-s", "-o", "/dev/null", "http://127.0.0.1:9080/"]
interval: 10s
timeout: 3s
retries: 3
start_period: 15s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "1", memory: "512M" }
reservations: { cpus: "0.5", memory: "256M" }
# ── Microservices ────────────────────────────────
identity:
build:
context: .
dockerfile: apps/identity/Dockerfile
args: { SERVICE: identity, PORT: 8081 }
container_name: exeos-identity
expose: ["8081"]
environment:
SERVER_HOST: 0.0.0.0
SERVER_PORT: 8081
RUST_LOG: ${RUST_LOG}
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/identity
REDIS_URL: redis://:${REDIS_PASSWORD}@redis:6379
KAFKA_BROKERS: kafka:9092
KAFKA_TOPIC: exeos-events
depends_on:
postgres: { condition: service_started }
redis: { condition: service_healthy }
kafka: { condition: service_healthy }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "256M" }
reservations: { cpus: "0.25", memory: "64M" }
notification:
build:
context: .
dockerfile: apps/notification/Dockerfile
args: { SERVICE: notification, PORT: 8084 }
container_name: exeos-notification
expose: ["8084"]
environment:
SERVER_HOST: 0.0.0.0
SERVER_PORT: 8084
RUST_LOG: ${RUST_LOG}
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/notification
REDIS_URL: redis://:${REDIS_PASSWORD}@redis:6379
KAFKA_BROKERS: kafka:9092
KAFKA_TOPIC: exeos-events
KAFKA_GROUP_ID: notification-consumer
depends_on:
postgres: { condition: service_started }
redis: { condition: service_healthy }
kafka: { condition: service_healthy }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "256M" }
reservations: { cpus: "0.25", memory: "64M" }
audit:
build:
context: .
dockerfile: apps/audit/Dockerfile
args: { SERVICE: audit, PORT: 8082 }
container_name: exeos-audit
expose: ["8082"]
environment:
SERVER_HOST: 0.0.0.0
SERVER_PORT: 8082
RUST_LOG: ${RUST_LOG}
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/audit
REDIS_URL: redis://:${REDIS_PASSWORD}@redis:6379
KAFKA_BROKERS: kafka:9092
KAFKA_TOPIC: exeos-events
KAFKA_GROUP_ID: audit-consumer
depends_on:
postgres: { condition: service_started }
redis: { condition: service_healthy }
kafka: { condition: service_healthy }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "256M" }
reservations: { cpus: "0.25", memory: "64M" }
analytics:
build:
context: .
dockerfile: apps/analytics/Dockerfile
args: { SERVICE: analytics, PORT: 8083 }
container_name: exeos-analytics
expose: ["8083"]
environment:
SERVER_HOST: 0.0.0.0
SERVER_PORT: 8083
RUST_LOG: ${RUST_LOG}
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/analytics
REDIS_URL: redis://:${REDIS_PASSWORD}@redis:6379
depends_on:
postgres: { condition: service_started }
redis: { condition: service_healthy }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "256M" }
reservations: { cpus: "0.25", memory: "64M" }
# ── Monitoring ───────────────────────────────────
prometheus:
image: prom/prometheus:v2.53.0
container_name: exeos-prometheus
command:
- --config.file=/etc/prometheus/prometheus.yml
- --storage.tsdb.path=/prometheus
- --storage.tsdb.retention.time=30d
- --web.console.libraries=/etc/prometheus/console_libraries
- --web.console.templates=/etc/prometheus/consoles
- --web.enable-lifecycle
volumes:
- ./monitoring/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
- ./monitoring/prometheus/rules:/etc/prometheus/rules:ro
- prometheus_data:/prometheus
ports:
- "127.0.0.1:9090:9090"
depends_on:
apisix: { condition: service_healthy }
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:9090/-/ready"]
interval: 10s
timeout: 3s
retries: 3
start_period: 10s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "512M" }
reservations: { cpus: "0.25", memory: "256M" }
alertmanager:
image: prom/alertmanager:v0.27.0
container_name: exeos-alertmanager
command:
- --config.file=/etc/alertmanager/alertmanager.yml
- --storage.path=/alertmanager
volumes:
- ./monitoring/alertmanager:/etc/alertmanager:ro
ports:
- "127.0.0.1:9093:9093"
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.2", memory: "128M" }
grafana:
image: grafana/grafana:11.1.0
container_name: exeos-grafana
environment:
GF_SECURITY_ADMIN_USER: admin
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_PASSWORD:-admin}
GF_INSTALL_PLUGINS: ""
GF_AUTH_ANONYMOUS_ENABLED: "false"
GF_SERVER_ROOT_URL: https://monitor.your-production-domain.com
GF_UNIFIED_ALERTING_ENABLED: "true"
volumes:
- grafana_data:/var/lib/grafana
- ./monitoring/grafana/provisioning:/etc/grafana/provisioning:ro
- ./monitoring/grafana/dashboards:/var/lib/grafana/dashboards:ro
ports:
- "127.0.0.1:3000:3000"
depends_on:
prometheus: { condition: service_healthy }
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/api/health"]
interval: 10s
timeout: 3s
retries: 3
start_period: 15s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "512M" }
reservations: { cpus: "0.25", memory: "128M" }
# ── Logging ──────────────────────────────────────
loki:
image: grafana/loki:3.0.0
container_name: exeos-loki
command: -config.file=/etc/loki/loki-config.yml
volumes:
- ./monitoring/loki/loki-config.yml:/etc/loki/loki-config.yml:ro
- loki_data:/loki
ports:
- "127.0.0.1:3100:3100"
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3100/ready"]
interval: 10s
timeout: 3s
retries: 3
start_period: 10s
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "256M" }
reservations: { cpus: "0.25", memory: "128M" }
promtail:
image: grafana/promtail:3.0.0
container_name: exeos-promtail
command: -config.file=/etc/promtail/promtail-config.yml
volumes:
- ./monitoring/promtail/promtail-config.yml:/etc/promtail/promtail-config.yml:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- /var/log:/var/log:ro
depends_on:
loki: { condition: service_healthy }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.3", memory: "128M" }
reservations: { cpus: "0.1", memory: "64M" }
# ── Host Monitoring ──────────────────────────────
node-exporter:
image: prom/node-exporter:v1.8.1
container_name: exeos-node-exporter
command:
- --path.rootfs=/host
- --path.procfs=/host/proc
- --path.sysfs=/host/sys
- --collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)
volumes:
- /:/host:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
ports:
- "127.0.0.1:9100:9100"
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.2", memory: "128M" }
reservations: { cpus: "0.1", memory: "64M" }
# ── Backup ───────────────────────────────────────
backup:
image: postgres:16-alpine
container_name: exeos-backup
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
PGHOST: postgres
PGPORT: 5432
volumes:
- backup_data:/backups
- ./scripts/backup.sh:/backup.sh:ro
entrypoint: |
sh -c '
echo "0 3 * * * /backup.sh" | crontab -
crond -f -l 2
'
depends_on:
postgres: { condition: service_healthy }
restart: unless-stopped
deploy:
resources:
limits: { cpus: "0.5", memory: "128M" }