-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yaml
92 lines (83 loc) · 2.08 KB
/
docker-compose.yaml
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
92
version: "2"
services:
fuseki:
image: fcrepoapix/apix-fuseki:3.4.0
build: fuseki/3.4.0
env_file: .env
container_name: fuseki
ports:
- "${FUSEKI_PORT}:${FUSEKI_PORT}"
fcrepo:
image: fcrepoapix/apix-fcrepo:4.7.4-1
build: fcrepo/4.7.4-1
container_name: fcrepo
env_file: .env
ports:
- "${FCREPO_PORT}:${FCREPO_PORT}"
- "5006:5006"
acrepo:
image: fcrepoapix/apix-acrepo:1.1.0-1
build: extensions/acrepo/1.1.0-1
container_name: acrepo
env_file: .env
ports:
- "${ACREPO_FITS_PORT}:${ACREPO_FITS_PORT}"
- "${ACREPO_IMAGE_PORT}:${ACREPO_IMAGE_PORT}"
- "${ACREPO_ORE_PORT}:${ACREPO_ORE_PORT}"
- "${ACREPO_PCDM_PORT}:${ACREPO_PCDM_PORT}"
- "${ACREPO_SERIALIZE_XML_PORT}:${ACREPO_SERIALIZE_XML_PORT}"
depends_on:
- fcrepo
links:
- apix:localhost
apix:
image: fcrepoapix/apix-core:0.3.0-SNAPSHOT-1
build: apix/0.3.0-SNAPSHOT-1
container_name: apix
env_file: .env
ports:
- "${PUBLIC_REPOSITORY_PORT}:${PUBLIC_REPOSITORY_PORT}"
- "${APIX_LOADER_PORT}:${APIX_LOADER_PORT}"
depends_on:
- fcrepo
rdfvis:
image: fcrepoapix/apix-rdfvis:1.0.0-1
build: extensions/rdfvis/1.0.0-1
container_name: rdfvis
env_file: .env
ports:
- "${EXT_RDF_VIS_PORT}:${EXT_RDF_VIS_PORT}"
environment:
- "PORT=${EXT_RDF_VIS_PORT}"
links:
- apix:localhost
solr:
image: fcrepoapix/fcrepo-solr:4.10.3
build: solr/4.10.3
container_name: solr
env_file: .env
ports:
- "${SOLR_PORT}:${SOLR_PORT}"
toolbox:
image: fcrepoapix/fcrepo-toolbox:4.7.2-1
build: toolbox/4.7.2-1
container_name: toolbox
env_file:
- .env
- .env.toolbox
ports:
- "${REINDEXING_PORT}:${REINDEXING_PORT}"
- "${LDPATH_PORT}:${LDPATH_PORT}"
depends_on:
- fcrepo
- fuseki
- solr
links:
- apix:localhost
fits:
image: fcrepoapix/apix-fits:1.1.1
build: fits/1.1.1
container_name: fits
env_file: .env
ports:
- "${FITS_PORT}:${FITS_PORT}"