-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
430 lines (416 loc) · 10.3 KB
/
docker-compose.yml
File metadata and controls
430 lines (416 loc) · 10.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
418
419
420
421
422
423
424
425
426
427
428
429
430
version: '3.8'
# Academic Workflow Suite - Main Docker Compose Configuration
# This file defines the complete containerized environment for AWS
networks:
aws-network:
driver: bridge
ipam:
config:
- subnet: 172.28.0.0/16
ai-jail-network:
driver: bridge
internal: true # No external network access for AI jail
ipam:
config:
- subnet: 172.29.0.0/16
volumes:
postgres-data:
driver: local
redis-data:
driver: local
prometheus-data:
driver: local
grafana-data:
driver: local
lmdb-data:
driver: local
ai-models:
driver: local
services:
# PostgreSQL Database (for backend service)
postgres:
image: postgres:16-alpine
container_name: aws-postgres
restart: unless-stopped
networks:
- aws-network
ports:
- "5432:5432"
environment:
POSTGRES_DB: academic_workflow
POSTGRES_USER: aws_user
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-changeme123}
POSTGRES_INITDB_ARGS: "--encoding=UTF8 --locale=en_US.UTF-8"
volumes:
- postgres-data:/var/lib/postgresql/data
- ./docker/configs/postgres/init.sql:/docker-entrypoint-initdb.d/01-init.sql:ro
- ./docker/configs/postgres/setup-replication.sql:/docker-entrypoint-initdb.d/02-replication.sql:ro
healthcheck:
test: ["CMD-SHELL", "pg_isready -U aws_user -d academic_workflow"]
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
deploy:
resources:
limits:
cpus: '2.0'
memory: 2G
reservations:
cpus: '0.5'
memory: 512M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
# Redis (for caching and pub/sub)
redis:
image: redis:7-alpine
container_name: aws-redis
restart: unless-stopped
networks:
- aws-network
ports:
- "6379:6379"
command: >
redis-server
--appendonly yes
--appendfsync everysec
--maxmemory 512mb
--maxmemory-policy allkeys-lru
--save 900 1
--save 300 10
--save 60 10000
volumes:
- redis-data:/data
- ./docker/configs/redis/redis.conf:/usr/local/etc/redis/redis.conf:ro
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
start_period: 5s
deploy:
resources:
limits:
cpus: '1.0'
memory: 1G
reservations:
cpus: '0.25'
memory: 256M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
# Adminer (Database UI)
adminer:
image: adminer:latest
container_name: aws-adminer
restart: unless-stopped
networks:
- aws-network
ports:
- "8081:8080"
environment:
ADMINER_DEFAULT_SERVER: postgres
ADMINER_DESIGN: pepa-linha
depends_on:
postgres:
condition: service_healthy
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:8080"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
# Core Engine (Rust)
core:
build:
context: .
dockerfile: ./dockerfiles/Dockerfile.core
args:
RUST_VERSION: 1.75
image: aws-core:latest
container_name: aws-core
restart: unless-stopped
networks:
- aws-network
- ai-jail-network
ports:
- "8080:8080"
environment:
RUST_LOG: info
AWS_ENV: production
API_HOST: 0.0.0.0
API_PORT: 8080
LMDB_PATH: /data/lmdb
AI_JAIL_SOCKET: /run/ai-jail.sock
REDIS_URL: redis://redis:6379
volumes:
- lmdb-data:/data/lmdb
- ai-jail-socket:/run
- ./config:/app/config:ro
depends_on:
redis:
condition: service_healthy
ai-jail:
condition: service_started
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 15s
timeout: 10s
retries: 3
start_period: 30s
deploy:
resources:
limits:
cpus: '4.0'
memory: 4G
reservations:
cpus: '1.0'
memory: 1G
logging:
driver: "json-file"
options:
max-size: "20m"
max-file: "5"
# Backend Service (Elixir/Phoenix)
backend:
build:
context: .
dockerfile: ./dockerfiles/Dockerfile.backend
args:
ELIXIR_VERSION: 1.15
ERLANG_VERSION: 26
image: aws-backend:latest
container_name: aws-backend
restart: unless-stopped
networks:
- aws-network
ports:
- "4000:4000"
environment:
MIX_ENV: prod
PHX_HOST: backend
PHX_SERVER: "true"
PORT: 4000
DATABASE_URL: postgresql://aws_user:${POSTGRES_PASSWORD:-changeme123}@postgres:5432/academic_workflow
REDIS_URL: redis://redis:6379
SECRET_KEY_BASE: ${SECRET_KEY_BASE:-generate-a-secret-key-base-with-mix-phx-gen-secret}
volumes:
- ./config:/app/config:ro
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4000/api/health"]
interval: 15s
timeout: 10s
retries: 3
start_period: 30s
deploy:
resources:
limits:
cpus: '2.0'
memory: 2G
reservations:
cpus: '0.5'
memory: 512M
logging:
driver: "json-file"
options:
max-size: "20m"
max-file: "5"
# AI Jail (Isolated Container)
ai-jail:
build:
context: .
dockerfile: ./dockerfiles/Dockerfile.ai-jail
args:
RUST_VERSION: 1.75
image: aws-ai-jail:latest
container_name: aws-ai-jail
restart: unless-stopped
networks:
- ai-jail-network
environment:
RUST_LOG: info
AI_JAIL_MODE: "true"
SOCKET_PATH: /run/ai-jail.sock
MODEL_PATH: /models
volumes:
- ai-models:/models:ro
- ai-jail-socket:/run
# Security settings - critical for AI isolation
cap_drop:
- ALL
cap_add:
- CHOWN
- DAC_OVERRIDE
- SETGID
- SETUID
security_opt:
- no-new-privileges:true
- seccomp=./docker/configs/seccomp/ai-jail.json
read_only: true
tmpfs:
- /tmp:size=1G,mode=1777,noexec,nosuid,nodev
deploy:
resources:
limits:
cpus: '2.0'
memory: 4G
reservations:
cpus: '1.0'
memory: 2G
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
# Nginx Reverse Proxy
nginx:
build:
context: .
dockerfile: ./dockerfiles/Dockerfile.nginx
image: aws-nginx:latest
container_name: aws-nginx
restart: unless-stopped
networks:
- aws-network
ports:
- "80:80"
- "443:443"
volumes:
- ./docker/configs/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- ./docker/configs/nginx/conf.d:/etc/nginx/conf.d:ro
- ./docker/configs/nginx/ssl:/etc/nginx/ssl:ro
- ./docker/configs/nginx/html:/usr/share/nginx/html:ro
depends_on:
core:
condition: service_healthy
backend:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/health"]
interval: 15s
timeout: 5s
retries: 3
start_period: 10s
deploy:
resources:
limits:
cpus: '1.0'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
# Prometheus (Monitoring)
prometheus:
image: prom/prometheus:latest
container_name: aws-prometheus
restart: unless-stopped
networks:
- aws-network
ports:
- "9090:9090"
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--storage.tsdb.retention.time=30d'
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
- '--web.console.templates=/usr/share/prometheus/consoles'
- '--web.enable-lifecycle'
volumes:
- ./docker/configs/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
- ./docker/configs/prometheus/alerts:/etc/prometheus/alerts:ro
- prometheus-data:/prometheus
depends_on:
- core
- backend
- nginx
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:9090/-/healthy"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
deploy:
resources:
limits:
cpus: '1.0'
memory: 1G
reservations:
cpus: '0.25'
memory: 256M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
# Grafana (Dashboards)
grafana:
image: grafana/grafana:latest
container_name: aws-grafana
restart: unless-stopped
networks:
- aws-network
ports:
- "3000:3000"
environment:
GF_SECURITY_ADMIN_USER: admin
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_PASSWORD:-admin}
GF_USERS_ALLOW_SIGN_UP: "false"
GF_INSTALL_PLUGINS: redis-datasource
GF_SERVER_ROOT_URL: http://localhost:3000
GF_ANALYTICS_REPORTING_ENABLED: "false"
GF_ANALYTICS_CHECK_FOR_UPDATES: "false"
volumes:
- grafana-data:/var/lib/grafana
- ./docker/configs/grafana/provisioning:/etc/grafana/provisioning:ro
- ./docker/configs/grafana/dashboards:/var/lib/grafana/dashboards:ro
depends_on:
prometheus:
condition: service_healthy
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
deploy:
resources:
limits:
cpus: '1.0'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
# Shared volume for AI jail socket communication
volumes:
ai-jail-socket:
driver: local