forked from silviodc/docker-compose-bioportal
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcommon.yml
44 lines (44 loc) · 1.01 KB
/
common.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
version: '2'
services:
bioportal-4store:
build: ./bioportal-4store
container_name: bioportal-4store
ports:
- "9000:9000"
volumes:
- ./data/4store/:/var/lib/4store
bioportal-mgrep:
build: ./bioportal-mgrep
container_name: bioportal-mgrep
ports:
- "55555:55555"
volumes:
- ./data/mgrep/:/opt/mgrep/dictionary
bioportal-solr:
build: ./bioportal-solr
container_name: bioportal-solr
volumes:
- ./data/solr:/opt/solr/solr
ports:
- "8983:8983"
redis-annotator:
image: redis:3.0.7-alpine
container_name: bioportal-redis-annotator
ports:
- "6379:6379"
volumes:
- ./data/redis/annotator/:/data
redis-http:
image: redis:3.0.7-alpine
container_name: bioportal-redis-http
ports:
- "6380:6379"
volumes:
- ./data/redis/http/:/data
redis-goo:
image: redis:3.0.7-alpine
container_name: bioportal-redis-goo
ports:
- "6381:6379"
volumes:
- ./data/redis/goo:/data