-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
36 lines (33 loc) · 1009 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
version: '3'
services:
broker-reverseproxy:
image: registry.gitlab.cc-asp.fraunhofer.de:4567/eis-ids/broker-open/reverseproxy
volumes:
- /etc/idscert/localhost:/etc/cert/
# - c:/etc/idscert/localhost:/etc/cert/
ports:
- "443:443" # IDS-HTTP API
- "80:80"
broker-core:
image: registry.gitlab.cc-asp.fraunhofer.de:4567/eis-ids/broker-open/core
volumes:
- /etc/idscert/localhost:/etc/cert/
# - c:/etc/idscert/localhost:/etc/cert/
restart: always
environment:
- SPARQL_ENDPOINT=http://broker-fuseki:3030/connectorData
- ELASTICSEARCH_HOSTNAME=broker-elasticsearch
- SHACL_VALIDATION=true
- DAPS_VALIDATE_INCOMING=true
- COMPONENT_URI=https://localhost/
- COMPONENT_CATALOGURI=https://localhost/connectors/
expose:
- "8080"
broker-fuseki:
image: registry.gitlab.cc-asp.fraunhofer.de:4567/eis-ids/broker-open/fuseki
volumes:
- broker-fuseki:/fuseki
expose:
- "3030"
volumes:
broker-fuseki: