forked from deeppavlov/dream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (54 loc) · 1.34 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
services:
agent:
build:
context: agent
container_name: agent
depends_on:
- mongo
ports:
- 4242:4242
tty: true
command: python -m deeppavlov_agent.run -ch http_client --cors
spelling_preprocessing:
build:
context: annotators/spelling_preprocessing
command: gunicorn --workers=1 server:app -b 0.0.0.0:3001 --timeout=100
ports:
- 3001:3001
harvesters_maintenance_skill:
build:
context: skills/harvesters_maintenance_skill
command: gunicorn --workers=1 server:app -b 0.0.0.0:3002
ports:
- 3002:3002
mongo:
command: mongod
image: mongo:4.0.0
ports:
- 27017:27017
volumes:
- /var/run/docker.sock:/var/run/docker.sock
rule_based_response_selector:
build:
context: selectors/rule_based_response_selector
command: gunicorn --workers=1 server:app -b 0.0.0.0:3003
ports:
- 3003:3003
emotion_classification:
build:
context: annotators/emotion_classification
command: python -m deeppavlov riseapi emo_bert.json -p 3004
ports:
- 3004:3004
program_y:
build:
context: skills/program-y
ports:
- 3005:3005
intent_catcher:
build:
context: ./annotators/intent_catcher/
ports:
- 3007:3007
command: python -m deeppavlov riseapi intent_catcher -d -p 3007
version: "3.7"