-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml_bak
49 lines (49 loc) · 924 Bytes
/
docker-compose.yml_bak
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
version: '3'
services:
redis:
restart: always
image: "redis:alpine"
ports:
- "6379:6379"
docker-dsp:
build:
context: .
dockerfile: Dockerfile
image: eyadsibai/docker-dsp:default
ports:
- "1994:1994"
- "8787:8787"
links:
- redis:redis
# volumes:
# - .:/code
rasa:
image: "rasa/rasa_nlu:latest-full"
ports:
- "5000:5000"
mongo:
image: mongo:3.4
networks:
default:
aliases:
- mongo
ports:
- "27017:27017"
modeldb_backend:
image: mitdbg/modeldb-backend:latest
networks:
default:
aliases:
- modeldb_backend
ports:
- "6543:6543"
command: ["mongo"]
modeldb_frontend:
image: mitdbg/modeldb-frontend:latest
networks:
default:
aliases:
- modeldb_frontend
ports:
- "3000:3000"
command: ["modeldb_backend"]