forked from TOOP4EU/toop-semantic-mapping-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
60 lines (59 loc) · 1.72 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
54
55
56
57
58
59
60
version: '2'
services:
fuseki:
image: ci.tno.nl/toop/plasido/fuseki:latest
build:
context: ./fuseki/
args:
#set trace enabled to 'true' to enable Fuseki TRACE logging, emtpy "" if default logging.
TRACE_ENABLED: ""
#set inference enabled to 'true' to enable Pizza Inference, empty "" for no inference. Notice that enabling reasoning might slow down SPARQL queries considerably.
INFERENCE_ENABLED: ""
no_proxy: ${env_no_proxy}
http_proxy: ${env_http_proxy}
https_proxy: ${env_https_proxy}
# extra_hosts:
# - "fuseki:127.0.0.1"
ports:
- "${FUSEKI_PORT}:3030"
mem_limit: 4000m
environment:
no_proxy: ${env_no_proxy}
http_proxy: ${env_http_proxy}
https_proxy: ${env_https_proxy}
ADMIN_PASSWORD: admin
JVM_ARGS: -Xmx3500M
refine:
image: ci.tno.nl/toop/plasido/refine:latest
build: ./refine/
ports:
- "${REFINE_PORT}:3333"
environment:
no_proxy: ${env_no_proxy}
http_proxy: ${env_http_proxy}
https_proxy: ${env_https_proxy}
REFINE_MEMORY: "2G"
REFINE_VERBOSITY: "trace"
grlc:
image: ci.tno.nl/toop/plasido/grlc:latest
build:
context: ./grlc/
args:
no_proxy: ${env_no_proxy}
http_proxy: ${env_http_proxy}
https_proxy: ${env_https_proxy}
# image: clariah/grlc:latest
restart: unless-stopped
ports:
- "${GRLC_PORT}:80"
environment:
- no_proxy=${env_no_proxy}
- http_proxy=${env_http_proxy}
- https_proxy=${env_https_proxy}
- DEBUG=true
- USERMAP_GID=1000
- USERMAP_UID=1000
- GRLC_GITHUB_ACCESS_TOKEN= ${env_github_access_token}
- GRLC_PORT
- FUSEKI_PORT
- GRLC_URL