-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (48 loc) · 1.02 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
version: '3'
services:
gateway:
build:
context: ./Gateway
ports:
- "8000:80"
env_file:
- ./Gateway/.env
volumes:
- /home/mahdi/Projects/FairnessLens/resources:/resources
image_analyzer:
build:
context: ./ImageAnalyzer
ports:
- "8001:80"
env_file:
- ./ImageAnalyzer/.env
environment:
- DATASET_PATH=/home/mahdi/Projects/FairnessLens/ImageAnalyzer/datasets/
volumes:
- /home/mahdi/Projects/FairnessLens/ImageAnalyzer/datasets/:/datasets/
- /var/run/docker.sock:/var/run/docker.sock # Bind mount the Docker socket
mask_generator:
build:
context: ./MaskGenerator
ports:
- "8002:80"
image_editor:
build:
context: ./ImageEditor
ports:
- "8003:80"
ucb:
build:
context: ./UCB
ports:
- "8004:80"
data_distribution_tester:
build:
context: ./DataDistributionTester
ports:
- "8005:80"
ui:
build:
context: ./UI/fairness-lens/
ports:
- "3000:80"