-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (45 loc) · 949 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: '3.0'
services:
chatbot:
env_file:
- ./.env
build: .
image: volgai-chatbot:latest
ports:
- 5005:5005
volumes:
- ./models:/app/models
- ./endpoints:/app/endpoints
#- ./connectors:/app/connectors
# environment:
# PYTHONPATH: "/app/connectors/rasa:/app"
# RASA_DUCKLING_HTTP_URL: http://rasa-duckling:8000
command:
- rasa
- run
- -vv
- --enable-api
- -m
- /app/models
- --endpoints
- /app/endpoints/endpoints.local.yml
- --credentials
- /app/credentials.yml
action_server:
env_file:
- ./.env
build: actions
image: volgai-chatbot-actions:latest
volumes:
- ./actions:/app/actions
command:
- python3
- -m
- rasa_sdk
- --actions
- actions
# added for speech-to-text integrations
# rasa-duckling:
# image: rasa/duckling
# ports:
# - 8000:8000