forked from adorsys-academic/cui-privately-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
67 lines (60 loc) · 1.33 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
62
63
64
65
66
67
version: '3.0'
services:
rasa_core:
image: rasa-core-hr
build:
context: ./rasa_core
dockerfile: Dockerfile
ports:
- 5005:5005
# command:
# - start
# - --core
# - app/models/dialogue
# - -c
# - socketio
# - --endpoints
# - app/config/endpoints.yml
# - -u
# - default/current
rasa_nlu:
image: rasa-nlu-hr
build:
context: ./rasa_nlu
dockerfile: Dockerfile
# volumes:
# - ./app/models/nlu:/app/models
# - ./app/config:/app/config
# command:
# - start
# - --path
# - app/models/nlu
# - -c
# - app/config/config_tensorflow.yml
action_server:
image: rasa-core-sdk-hr
build:
context: ./app/actions
dockerfile: Dockerfile
# volumes:
# - ./app/actions:/app/actions
# mongo:
# image: mongo
# ports:
# - 27017:27017
# # environment:
# # MONGO_INITDB_ROOT_USERNAME: rasa
# # MONGO_INITDB_ROOT_PASSWORD: <PASSWORD>
# mongo-express:
# image: mongo-express
# ports:
# - 8081:8081
# environment:
# ME_CONFIG_MONGODB_ADMINUSERNAME: rasa
# ME_CONFIG_MONGODB_ADMINPASSWORD: <PASSWORD>
# node-express:
# build: dialogue_log/backend/
# ports:
# - 4000:4000
# links:
# - mongo