-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdocker-compose.yml
37 lines (33 loc) · 967 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
37
version: '2'
services:
sparql-visualizer:
container_name: sparql-visualizer
#command: ng build
command: sh -c "cd /usr/src/app; node_modules/.bin/ng serve --host 0.0.0.0 --poll 1 --disableHostCheck"
build: .
ports:
- "4200:4200"
volumes:
- ./e2e:/usr/src/app/e2e
- ./src:/usr/src/app/src
- ./angular-cli.json:/usr/src/app/angular-cli.json
- ./tsconfig.json:/usr/src/app/tsconfig.json
- ./tslint.json:/usr/src/app/tslint.json
depends_on:
- fuseki
fuseki:
container_name: fuseki
restart: on-failure
image: stain/jena-fuseki
ports:
- "3030:3030"
environment:
- JVM_ARGS=-Xmx10g
volumes:
- fuseki-data:/fuseki
- ./fuseki-staging:/staging
- ./shiro.ini:/fuseki/shiro.ini
- ./test-ds-in-mem.ttl:/fuseki/configuration/test-ds-in-mem.ttl
- ./test-ds-reasoning.ttl:/fuseki/configuration/test-ds-reasoning.ttl
volumes:
fuseki-data: