Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose-virtuoso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ services:
NO_ENTRYPOINT_WORKERS: 1
env_file:
- docker/db.env
- docker/virtuoso.env
volumes:
- seek-filestore:/seek/filestore
- seek-cache:/seek/tmp/cache
Expand All @@ -46,10 +47,9 @@ services:
RAILS_ENV: production
SOLR_PORT: 8983
SOLR_HOST: solr
DBA_PASSWORD: wibble
VIRTUOSO: 'true'
env_file:
- docker/db.env
- docker/virtuoso.env
volumes:
- seek-filestore:/seek/filestore
- seek-cache:/seek/tmp/cache
Expand Down Expand Up @@ -77,14 +77,14 @@ services:
- /opt/solr/server/solr/configsets/seek_config

virtuoso:
image: openlink/virtuoso-opensource-7
image: openlink/virtuoso-opensource-7:7.2.15
container_name: seek-virtuoso
restart: always
ports:
- "8890:8890"
- "1111:1111"
environment:
DBA_PASSWORD: wibble
DBA_PASSWORD: CHANGE_ME
volumes:
- seek-virtuoso-data:/database

Expand Down
4 changes: 4 additions & 0 deletions docker/virtuoso.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DBA_PASSWORD=CHANGE_ME
RDF_PUBLIC_GRAPH=seek:public
#RDF_PRIVATE_GRAPH=seek:private
VIRTUOSO=true
4 changes: 2 additions & 2 deletions docker/virtuoso_settings.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ production:
username: dba
password: <%= ENV["DBA_PASSWORD"] %>

private_graph: seek:private
public_graph: seek:public
private_graph: <%= ENV["RDF_PRIVATE_GRAPH"] %>
public_graph: <%= ENV["RDF_PUBLIC_GRAPH"] %>

disabled: <%= !ENV["VIRTUOSO"].present? %>
Loading