-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (48 loc) · 1.27 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
services:
redis:
image: redis:7.2.2
ports:
- "6379:6379"
personalization-tool:
image: ghcr.io/xr2learn/personalization-tool:latest
build:
context: 'Personalization_Tool'
dockerfile: 'Dockerfile'
volumes:
- "./Personalization_Tool:/app"
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
build:
context: 'Personalization_Dashboard'
dockerfile: 'Dockerfile'
volumes:
- "./Personalization_Dashboard:/app"
working_dir: /app
environment:
- REDIS_HOST=redis
command: python web_app.py
depends_on:
- redis
- personalization-tool
ports:
- "8000:8000"
fusion-layer:
image: ghcr.io/xr2learn/fusion-layer:latest
volumes:
- "./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
- PUBLISHER_ON=${PUBLISHER_ON:-true}
command: python multimodal_fusion_layer/predict.py
depends_on:
- redis