-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
34 lines (34 loc) · 927 Bytes
/
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
version: '3'
services:
duckling:
image: rasa/duckling
ports:
- "8000:8000"
command: stack exec duckling-example-exe
rasa_en:
image: rasa_core_latest
build:
context: .
volumes:
- ./data:/app/data
ports:
- "5005:5005"
command: python -m rasa_core.run --enable_api -c rest -d data/servicing-bot-en/models/dialogue -u data/servicing-bot-en/models/servicing-bot-en/model-en --endpoints endpoints.yml --credentials credentials.yml --debug
action:
image: action_server
build:
context: ./actions
volumes:
- ./actions:/app
ports:
- "5055:5055"
command : python -m rasa_core_sdk.endpoint --actions actions
nlg:
image: nlg_server
build:
context: ./nlg
volumes:
- ./data:/app/data
ports:
- "5056:5056"
command : python nlg/nlg_server.py --port 5056 --domain data/servicing-bot-en/domain.yml