-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
61 lines (57 loc) · 1.09 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
55
56
57
58
59
60
61
version: '3.0'
services:
rasa:
environment:
- UID=1000
- GID=1001
user: "${UID}:${GID}"
image: rasa/rasa:2.8.15-full
# build:
# context: ./rasa
# container_name: rasa-server
ports:
- "5005:5005"
volumes:
- ./rasa:/app
command:
- run
- --cors
- "*"
- --enable-api
- --debug
- --log-file
- out.log
networks:
- rasa
depends_on:
- action-server
action-server:
build:
context: ./action-server
container_name: rasa-action-server
# image: rasa/rasa-sdk:3.0.2
volumes:
- ./action-server/custom_actions:/app/actions
ports:
- "5055:5055"
networks:
- rasa
chatbot:
build:
context: ./chatbot
ports:
- "5000:5000"
networks:
- rasa
notebook-playground:
build:
context: ./notebook-playground
networks:
- rasa
volumes:
- ./notebook-playground/notebooks:/workspace
ports:
# Jupyter Notebook port - always map from 8888 to any available port
- 8888:8888
networks:
rasa: