-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·96 lines (89 loc) · 1.61 KB
/
Copy pathdocker-compose.yml
File metadata and controls
executable file
·96 lines (89 loc) · 1.61 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
version: '3'
services:
web:
build: .
container_name: "flask-api"
expose:
- "5000"
networks:
- flask_web
ports:
- "5000:5000"
command: "python3 api.py"
redis:
volumes:
- .:/code
restart: always
image: 'bitnami/redis:latest'
container_name: "redis"
expose:
- "6379"
ports:
- "6379:6379"
networks:
- flask_web
environment:
- ALLOW_EMPTY_PASSWORD=yes
action_server_english:
restart: always
volumes:
- .:/code
build: .
image: rasa_chatbot_actions:latest
networks:
- flask_web
expose:
- "5055"
ports:
- "5055:5055"
command:
- bash
- /code/scripts/run_action_server_english.sh
chatbot_server_enlish:
restart: always
build: .
image: rasa_chatbot:latest
expose:
- "8000"
ports:
- "8000:8000"
networks:
- flask_web
volumes:
- .:/code
command:
- bash
- /code/scripts/run_chat_server_english.sh
action_server_roman:
restart: always
volumes:
- .:/code
build: .
image: rasa_chatbot_actions:latest
networks:
- flask_web
expose:
- "5056"
ports:
- "5056:5056"
command:
- bash
- /code/scripts/run_action_server_roman.sh
chatbot_server_roman:
restart: always
build: .
image: rasa_chatbot:latest
expose:
- "8006"
ports:
- "8006:8006"
networks:
- flask_web
volumes:
- .:/code
command:
- bash
- /code/scripts/run_chat_server_roman.sh
networks:
flask_web:
driver: bridge