-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
298 lines (283 loc) · 9.11 KB
/
Copy pathdocker-compose.yml
File metadata and controls
298 lines (283 loc) · 9.11 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
# CORTEX AI - Docker Compose Development Stack
# Full infrastructure for local development
services:
# ===========================================================================
# API Server
# ===========================================================================
api:
build:
context: .
dockerfile: Dockerfile
container_name: cortex-api
ports:
- "8000:8000"
environment:
- APP_ENV=development
- DEBUG=true
- POSTGRES_HOST=postgres
- REDIS_HOST=redis
- MONGODB_HOST=mongodb
- MINIO_ENDPOINT=minio:9000
- ELASTICSEARCH_HOST=elasticsearch
- KAFKA_BOOTSTRAP_SERVERS=kafka:9092
volumes:
- ./cortex:/app/cortex
- ./models:/app/models
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
mongodb:
condition: service_started
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# PostgreSQL - Primary SQL Database
# ===========================================================================
postgres:
image: postgres:15-alpine
container_name: cortex-postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: cortex
POSTGRES_PASSWORD: cortex_secure_password_2024
POSTGRES_DB: cortex
volumes:
- postgres_data:/var/lib/postgresql/data
- ./scripts/init-db:/docker-entrypoint-initdb.d
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U cortex -d cortex" ]
interval: 10s
timeout: 5s
retries: 5
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# MongoDB - Document Database
# ===========================================================================
mongodb:
image: mongo:6
container_name: cortex-mongodb
ports:
- "27017:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: cortex
MONGO_INITDB_ROOT_PASSWORD: cortex_mongo_password_2024
MONGO_INITDB_DATABASE: cortex
volumes:
- mongodb_data:/data/db
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Redis - Cache, Sessions, Message Queue
# ===========================================================================
redis:
image: redis:7-alpine
container_name: cortex-redis
ports:
- "6379:6379"
command: redis-server --requirepass cortex_redis_password_2024 --appendonly yes
volumes:
- redis_data:/data
healthcheck:
test: [ "CMD", "redis-cli", "-a", "cortex_redis_password_2024", "ping" ]
interval: 10s
timeout: 5s
retries: 5
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# MinIO - S3-Compatible Object Storage
# ===========================================================================
minio:
image: minio/minio:latest
container_name: cortex-minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: cortex_minio_access
MINIO_ROOT_PASSWORD: cortex_minio_secret_2024
command: server /data --console-address ":9001"
volumes:
- minio_data:/data
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9000/minio/health/live" ]
interval: 30s
timeout: 20s
retries: 3
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Elasticsearch - Search & Log Aggregation
# ===========================================================================
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.0
container_name: cortex-elasticsearch
ports:
- "9200:9200"
environment:
- discovery.type=single-node
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Kibana - Elasticsearch UI
# ===========================================================================
kibana:
image: docker.elastic.co/kibana/kibana:8.11.0
container_name: cortex-kibana
ports:
- "5601:5601"
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
depends_on:
- elasticsearch
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Zookeeper - Kafka Coordination
# ===========================================================================
zookeeper:
image: confluentinc/cp-zookeeper:7.5.0
container_name: cortex-zookeeper
ports:
- "2181:2181"
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
volumes:
- zookeeper_data:/var/lib/zookeeper/data
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Kafka - Event Streaming
# ===========================================================================
kafka:
image: confluentinc/cp-kafka:7.5.0
container_name: cortex-kafka
ports:
- "9092:9092"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
depends_on:
- zookeeper
volumes:
- kafka_data:/var/lib/kafka/data
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Prometheus - Metrics Collection
# ===========================================================================
prometheus:
image: prom/prometheus:latest
container_name: cortex-prometheus
ports:
- "9090:9090"
volumes:
- ./config/prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus_data:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Grafana - Dashboards
# ===========================================================================
grafana:
image: grafana/grafana:latest
container_name: cortex-grafana
ports:
- "3000:3000"
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=cortex_grafana_2024
volumes:
- grafana_data:/var/lib/grafana
- ./config/grafana/provisioning:/etc/grafana/provisioning
depends_on:
- prometheus
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Celery Worker - Background Tasks
# ===========================================================================
celery-worker:
build:
context: .
dockerfile: Dockerfile
container_name: cortex-celery-worker
command: celery -A cortex.automation.celery_app worker --loglevel=info
environment:
- CELERY_BROKER_URL=redis://:cortex_redis_password_2024@redis:6379/1
- CELERY_RESULT_BACKEND=redis://:cortex_redis_password_2024@redis:6379/2
volumes:
- ./cortex:/app/cortex
- ./models:/app/models
depends_on:
- redis
- api
networks:
- cortex-network
restart: unless-stopped
# ===========================================================================
# Celery Beat - Scheduled Tasks
# ===========================================================================
celery-beat:
build:
context: .
dockerfile: Dockerfile
container_name: cortex-celery-beat
command: celery -A cortex.automation.celery_app beat --loglevel=info
environment:
- CELERY_BROKER_URL=redis://:cortex_redis_password_2024@redis:6379/1
- CELERY_RESULT_BACKEND=redis://:cortex_redis_password_2024@redis:6379/2
volumes:
- ./cortex:/app/cortex
depends_on:
- redis
- celery-worker
networks:
- cortex-network
restart: unless-stopped
# =============================================================================
# Networks
# =============================================================================
networks:
cortex-network:
driver: bridge
# =============================================================================
# Volumes
# =============================================================================
volumes:
postgres_data:
mongodb_data:
redis_data:
minio_data:
elasticsearch_data:
zookeeper_data:
kafka_data:
prometheus_data:
grafana_data: