-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
43 lines (43 loc) · 1.15 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
--- # Apache Jena & Fuseki triple store
version: '3'
services:
graphdb:
image: khaller/graphdb-free
container_name: graphdb
environment:
- GDB_HEAP_SIZE=4g
volumes:
- ./graphdb/graphdb.properties:/opt/graphdb/conf/graphdb.properties
- ./graphdb_data:/opt/graphdb/data/repositories
ports:
- 7200:7200
pad_api:
build:
context: .
dockerfile: ./pad_api/Dockerfile
container_name: pad_api
environment:
- APP_ENVIRONMENT=production
- APP_HOST=0.0.0.0
- APP_PORT=5000
- APP_SPARQL_HOST=http://graphdb:7200
- APP_SPARQL_QUERY_PATH=/repositories/pad
- APP_GLOBAL_LIMIT=50
- APP_PAD_PREFIX=https://journalobservatory.org/pad/
ports:
- 5001:5000
job_api:
build:
context: .
dockerfile: ./pad_api/Dockerfile
container_name: job_api
environment:
- APP_ENVIRONMENT=production
- APP_HOST=0.0.0.0
- APP_PORT-5000
- APP_SPARQL_HOST=http://graphdb:7200
- APP_SPARQL_QUERY_PATH=/repositories/job
- APP_GLOBAL_LIMIT=50
- APP_PAD_PREFIX=https://journalobservatory.org/job/pad/
ports:
- 5002:5000