-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
143 lines (134 loc) · 4.88 KB
/
docker-compose.yml
File metadata and controls
143 lines (134 loc) · 4.88 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
services:
emotion-classification-audio:
image: ghcr.io/xr2learn/ed-classification-audio:latest
build:
context: 'Emotion_Classification/Emotion_Classification_Audio_Modality'
dockerfile: 'Dockerfile'
volumes:
- "./Emotion_Classification/Emotion_Classification_Audio_Modality:/app"
- "./datasets:/app/datasets"
- "./outputs:/app/outputs"
- "${CONFIG_FILE_PATH:-./configuration.json}:/app/configuration.json"
working_dir: /app
environment:
- EXPERIMENT_ID=${EXPERIMENT_ID:-development-model}
command: python emotion_classification_audio_modality/predict.py
emotion-classification-bm:
image: ghcr.io/xr2learn/ed-classification-bm:latest
build:
context: 'Emotion_Classification/Emotion_Classification_BM_Modality'
dockerfile: 'Dockerfile'
volumes:
- "./Emotion_Classification/Emotion_Classification_BM_Modality:/app"
- "./datasets:/app/datasets"
- "./outputs:/app/outputs"
- "${CONFIG_FILE_PATH:-./configuration.json}:/app/configuration.json"
working_dir: /app
environment:
- EXPERIMENT_ID=${EXPERIMENT_ID:-development-model}
- REDIS_HOST=redis
command: python emotion_classification_bm_modality/predict.py
depends_on:
- redis
emotion-classification-body-tracking:
image: ghcr.io/xr2learn/emotion-classification-body-tracking:latest
build:
context: 'Emotion_Classification/Emotion_Classification_Body_Tracking_Modality'
dockerfile: 'Dockerfile'
volumes:
- "./Emotion_Classification/Emotion_Classification_Body_Tracking_Modality:/app"
- "./datasets:/app/datasets"
- "./outputs:/app/outputs"
- "${CONFIG_FILE_PATH:-./configuration.json}:/app/configuration.json"
working_dir: /app
environment:
- EXPERIMENT_ID=${EXPERIMENT_ID:-development-model}
- REDIS_HOST=redis
command: python emotion_classification_body_tracking_modality/predict.py
depends_on:
- redis
fusion-layer:
image: ghcr.io/xr2learn/fusion-layer:latest
build:
context: 'Multimodal_Fusion/Multimodal_Fusion_Layer'
dockerfile: 'Dockerfile'
volumes:
- "./Multimodal_Fusion/Multimodal_Fusion_Layer:/app"
- "./datasets:/app/datasets"
- "./outputs:/app/outputs"
- "${CONFIG_FILE_PATH:-./configuration.json}:/app/configuration.json"
working_dir: /app
environment:
- EXPERIMENT_ID=${EXPERIMENT_ID:-development-model}
- REDIS_HOST=redis
command: python multimodal_fusion_layer/predict.py
depends_on:
- redis
redis:
image: redis:7.2.2
ports:
- "6379:6379"
personalization-tool:
image: ghcr.io/xr2learn/personalization-tool:latest
working_dir: /app
environment:
- REDIS_HOST=redis
command: python personalization_tool/suggest_activity_level.py
depends_on:
- redis
dashboard:
image: ghcr.io/xr2learn/dashboard:latest
working_dir: /app
environment:
- REDIS_HOST=redis
command: python web_app.py
depends_on:
- redis
- personalization-tool
ports:
- "8000:8000"
inference-data-processing-bm:
image: ghcr.io/xr2learn/inference-data-processing-bm:latest
build:
context: 'Inference_Data_Processing/Inference_Data_Processing_BM_Modality'
dockerfile: 'Dockerfile'
volumes:
- "./Inference_Data_Processing/Inference_Data_Processing_BM_Modality:/app"
- "./datasets:/app/datasets"
- "./outputs:/app/outputs"
- "${CONFIG_FILE_PATH:-./configuration.json}:/app/configuration.json"
working_dir: /app
environment:
- EXPERIMENT_ID=${EXPERIMENT_ID:-development-model}
- REDIS_HOST=redis
command: python inference_data_processing_bm_modality/process_data.py
depends_on:
- redis
inference-data-processing-body-tracking:
image: ghcr.io/xr2learn/inference-data-processing-body-tracking:latest
build:
context: 'Inference_Data_Processing/Inference_Data_Processing_Body_Tracking_Modality'
dockerfile: 'Dockerfile'
volumes:
- "./Inference_Data_Processing/Inference_Data_Processing_Body_Tracking_Modality:/app"
- "./datasets:/app/datasets"
- "./outputs:/app/outputs"
- "${CONFIG_FILE_PATH:-./configuration.json}:/app/configuration.json"
working_dir: /app
environment:
- EXPERIMENT_ID=${EXPERIMENT_ID:-development-model}
- REDIS_HOST=redis
command: python inference_data_processing_body_tracking_modality/process_data.py
depends_on:
- redis
mock-xroom-writer:
image: ghcr.io/xr2learn/mock-xroom-writer:latest
build:
context: 'Mock_XRoom_Writer/Mock_XRoom_Writer_BM_BT_Modality'
dockerfile: 'Dockerfile'
volumes:
- "./datasets/:/app/datasets"
- "./outputs:/app/outputs"
- "${CONFIG_FILE_PATH:-./configuration.json}:/app/configuration.json"
working_dir: /app
command: python mock_xroom_writer_bm_bt_modality/mock_xroom_writer.py