-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (53 loc) · 1 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
version: '3'
services:
generator:
build:
context: ./
dockerfile: dgenerator/Dockerfile
networks:
- backend
volumes:
- /local/data/naetherm/datasets/wikipedia/wikipedia/en_US/:/input/
- /local/data/naetherm/datasets/benchmark/:/output/
- /local/data/naetherm/datasets/wikipedia/data/:/data/
evaluator:
build:
context: ./
dockerfile: devaluator/Dockerfile
restart: always
expose:
- "1338"
ports:
- "1338:1338"
networks:
- backend
volumes:
- /local/ssd2/benchmark/:/data/
db:
image: postgres
restart: always
networks:
- backend
expose:
- "5432"
ports:
- "5432:5432"
web:
build:
context: ./frontend/
dockerfile: Dockerfile
restart: always
ports:
- "8000:8000"
networks:
- backend
links:
- db
- evaluator
depends_on:
- db
- evaluator
volumes:
- /local/ssd2/benchmark/:/data/
networks:
backend: