-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (53 loc) · 1.7 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
version: "3.7"
services:
# ###################################################################################################
# # KGE Backend
# ###################################################################################################
cmc-kge-backend:
build:
context: ./cmc-knowledge-graph-backend
dockerfile: Dockerfile
command: npm start
container_name: cmc-kge-backend
ports:
- 8080:9090
volumes:
- .:/usr/app/
- /usr/app/node_modules
networks:
- backend
- frontend
# ###################################################################################################
# # KGE Editor frontend
# ###################################################################################################
cmc-kge-frontend:
container_name: cmc-kge-frontend
build:
context: ./cmc-knowledge-graph-frontend
dockerfile: Dockerfile
args:
ANGULAR_ENVIRONMENT: docker
NODE_OPTIONS: "--max-old-space-size=4096"
ports:
- 4400:8080
networks:
- frontend
###################################################################################################
# Apache Jena Fuseki (SAPRQL server)
###################################################################################################
fuseki:
container_name: fuseki
image: stain/jena-fuseki
volumes:
- ./cmc-ontologies:/staging
command: bash -c "/staging/loader.sh && exec /jena-fuseki/fuseki-server --update --loc=/fuseki/databases/cmc-dataset /cmc-dataset"
environment:
- ADMIN_PASSWORD=${GRAPHDATABASE_PASSWORD}
- JVM_ARGS=-Xmx2g
ports:
- 3030:3030
networks:
- backend
networks:
frontend:
backend: