-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
91 lines (90 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
######################################################################################################
# This file is generated when `botfront up` is invoked. #
# Changes in .botfront/botfront.yml and .botfront/docker-compose-template.yml will be reflected here #
######################################################################################################
version: '3.0'
services:
botfront:
image: 'botfront/botfront:v1.0.5'
#build from local dockerfile to fix the favicon andd title page
container_name: zenith-botfront
restart: always
networks:
- botfront-network
volumes:
- './models/:/app/models'
ports:
- '8888:3000'
depends_on:
- mongo
env_file:
- .env
environment:
PORT: 3000
rasa:
build:
context: ./rasa
args:
RASA_IMAGE: '${IMAGES_CURRENT_RASA}'
container_name: zenith-rasa
networks:
- botfront-network
restart: always
ports:
- '5005:5005'
volumes:
- './models/:/app/models'
env_file:
- .env
actions:
build:
context: ./actions
args:
RASA_SDK_IMAGE: '${IMAGES_CURRENT_ACTIONS}'
container_name: zenith-actions
networks:
- botfront-network
restart: always
ports:
- '5055:5055'
volumes:
- './actions:/app/actions'
command:
- start
- '--debug'
- '--actions'
- actions
env_file:
- .env
mongo:
image: 'mongo:latest'
container_name: zenith-mongo
restart: always
networks:
- botfront-network
volumes:
- './botfront-db:/data/db'
ports:
- '27017:27017'
env_file:
- .env
openbullet2:
image: openbullet/openbullet2
container_name: zenith-openbullet2
networks: ["botfront-network"]
restart: always
ports:
- "8069:5000"
volumes:
- "./modules/Exploit/OpenBullet2/UserData/:/app/UserData/"
socialfish:
image: 'prestonzen/socialfish:1.0'
container_name: zenith-socialfish
networks: ["botfront-network"]
restart: always
ports:
- "5001:5000"
networks:
botfront-network: {}
volumes:
botfront-db: null