-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
52 lines (48 loc) · 1014 Bytes
/
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
version: '3.3'
services:
corenlp:
image: leia/ontosem:1.0.0 # Using the ontosem image here as it contains the entire corenlp stack as well (for now).
container_name: corenlp
ports:
- 5000:5000
networks:
- leia
command:
- "python3.6"
- "SmallSem/corenlp_server.py"
- "host=0.0.0.0"
- "port=5000"
ontosem:
image: leia/ontosem:1.0.0
container_name: ontosem
ports:
- 5001:5001
networks:
- leia
command:
- "python3.6"
- "ontosem_server.py"
- "host=0.0.0.0"
- "port=5001"
environment:
- CORENLP_HOST=corenlp
- CORENLP_PORT=5000
agents:
image: leia/agents:latest.yale
container_name: agents
ports:
- 5002:5002
networks:
- leia
command:
- "python3.6"
- "-m"
- "backend.main"
- "host=0.0.0.0"
- "port=5002"
environment:
- ONTOSEM_HOST=ontosem
- ONTOSEM_PORT=5001
networks:
leia:
driver: bridge