-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (52 loc) · 1.03 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
version: "3"
services:
spacy:
image: jgontrum/spacyapi:en_v2
ports:
- 9005:80
parsey:
image: jesdoit/parsey-server
environment:
- PYTHONIOENCODING=utf8
ports:
- 9004:80
nltk:
image: semlab/dadalytics-nltk
ports:
- 9003:9003
spotlight:
image: dbpedia/spotlight-english
entrypoint: spotlight.sh
ports:
- 9002:80
opener:
image: semlab/dadalytics-opener
ports:
- 9001:9001
stanford:
image: semlab/dadalytics-stanford-ner
ports:
- 9000:9000
gateway:
image: semlab/dadalytics-docker-ner-gateway
ports:
- 80:8080
- 443:8443
- 5001:8001
volumes:
- "/etc/certs:/etc/certs"
environment:
- SSL_PROD=false
- SSL_ENABLED=false
- SSL_DOMAINS=example.exampledomain.org
- SSL_REDIRECT=false
- NER_TIMEOUT=25000
- PYTHONIOENCODING=utf8
links:
- spotlight
- opener
- stanford
- nltk
- spacy
- parsey