-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose-acc.yml
executable file
·44 lines (44 loc) · 1.22 KB
/
docker-compose-acc.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
version: '2'
services:
webservice:
image: tenforce/vodap-dcatap-validation
hostname: webservice
labels:
webservice: "VODAP frontend access"
ports:
- '81:80'
volumes:
- ./logs:/logs
- ./webservice/www:/var/www/html
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
volumes_from:
- datashared
environment:
- ENV_CATALOG_LOCATION=http://opendata.vlaanderen.be/catalog.rdf
- ENV_VALIDATOR_DOMAIN=id.vlaanderen.be
- ENV_VALIDATOR_LOCATION=id.vlaanderen.be/vodap_validator
- ENV_SPARQL_ENDPOINT_SERVICE_URL=http://vodapweb-virtuoso:8890/sparql
links:
- vodapweb-virtuoso:vodapweb-virtuoso
vodapweb-virtuoso:
image: tenforce/virtuoso
hostname: vodapweb-virtuoso
ports:
- '8891:8890'
labels:
virtuoso: "VODAP temporary database store"
environment:
- DBA_PASSWORD=vodap
- SPARQL_UPDATE=true
- DEFAULT_GRAPH=http://data.vlaanderen.be/id/dataset/default
volumes:
# - ./virtuoso:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
volumes_from:
- datashared
datashared:
image: busybox
volumes:
- ./data:/data