-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdocker-compose.data.yml
28 lines (24 loc) · 1.16 KB
/
docker-compose.data.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
# You can use this docker compose file to pre-seed the solr and blazegraph instances with data
# usage: docker-compose -f docker-compose.yml -f docker-compose.data.yml <command>
version: '3'
# Use this file to override default, primary configuration in the docker-compose.yml file
# And to load pre-ingested data into it from zip files.
# Example use:
# docker-compose -f docker-compose.yml -f docker-compose.data.yml [command]
services:
solr:
build:
dockerfile: Dockerfile-data
args:
# Change the initial seed data.
# NOTE: The file must be in the build context directory i.e. ./solr
# In the zip file, there should be a head directory called hadatac_solr with the solr data inside of it
- SEED=solr.zip
blazegraph:
build:
dockerfile: Dockerfile-data
args:
# Change the initial seed data.
# NOTE: The file must be in the build context directory i.e. ./blazegraph
# In the zip file, there should be a file called blazegraph.jnl that contains the database
- SEED=blazegraph.zip