-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
63 lines (63 loc) · 1.18 KB
/
docker-compose.yaml
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
services:
nlp:
image: ghcr.io/recap-utr/nlp-service:latest
ports:
- "50100:50100"
tty: true
arguebase:
image: ghcr.io/recap-utr/arguebuf-python:latest
command:
- server
- start
- "0.0.0.0:50051"
- "--basepath=/data"
volumes:
- ./data:/data
ports:
- "50051:50051"
cbr-retrieval:
build:
context: .
dockerfile: cbr-retrieval.Dockerfile
ports:
- "50200:50200"
depends_on:
- nlp
command:
- "--address=0.0.0.0:50200"
- "--nlp-address=nlp:50100"
cbr-adaptation:
build:
context: .
dockerfile: cbr-adaptation.Dockerfile
ports:
- "50300:50300"
depends_on:
- nlp
command:
- "--address=0.0.0.0:50300"
- "--nlp-address=nlp:50100"
mining:
build:
context: .
dockerfile: mining.Dockerfile
ports:
- "50500:50500"
env_file:
- .env
ranking:
build:
context: .
dockerfile: ranking.Dockerfile
ports:
- "50902:50902"
env_file:
- .env
quality:
build:
context: .
dockerfile: quality.Dockerfile
ports:
- "50901:50901"
env_file:
- .env