-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
84 lines (73 loc) · 1.78 KB
/
docker-compose.yml
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
version: '3.8'
# Development version of docker-compose.yml
services:
athena:
build: ./athena
image: athena
command: echo "Athena build succeeded, exiting (this is normal)"
llm_core:
build: ./llm_core
depends_on:
- athena
image: llm_core
command: echo "llm_core build succeeded, exiting (this is normal)"
assessment_module_manager:
build: ./assessment_module_manager
depends_on:
- athena
ports:
- "5100:5100"
volumes:
- ./assessment_module_manager/deployments.ini:/code/deployments.ini:ro
module_example:
hostname: module-example
build: modules/programming/module_example
depends_on:
- athena
ports:
- "5001:5001"
module_programming_llm:
hostname: module-programming-llm
build: modules/programming/module_programming_llm
depends_on:
- athena
- llm_core
ports:
- "5002:5002"
module_text_llm:
hostname: module-text-llm
build: modules/text/module_text_llm
depends_on:
- athena
- llm_core
ports:
- "5003:5003"
module_text_cofee:
hostname: module-text-cofee
build: modules/text/module_text_cofee
depends_on:
- athena
ports:
- "5004:5004"
module_programming_themisml:
hostname: module-programming-themisml
build: modules/programming/module_programming_themisml
depends_on:
- athena
ports:
- "5005:5005"
module_programming_apted:
hostname: module-programming-apted
build: modules/programming/module_programming_apted
depends_on:
- athena
ports:
- "5006:5006"
module_modeling_llm:
hostname: module-modeling-llm
build: modules/modeling/module_modeling_llm
depends_on:
- athena
- llm_core
ports:
- "5008:5008"