Skip to content

Commit e4b0510

Browse files
committed
fix the reading of the env variables in the config
1 parent 9dc218a commit e4b0510

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/virtuoso_settings.docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ production:
55
username: dba
66
password: <%= ENV["DBA_PASSWORD"] %>
77

8-
private_graph: ENV["RDF_PRIVATE_GRAPH"]
9-
public_graph: ENV["RDF_PUBLIC_GRAPH"]
8+
private_graph: <%= ENV["RDF_PRIVATE_GRAPH"] %>
9+
public_graph: <%= ENV["RDF_PUBLIC_GRAPH"] %>
1010

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

0 commit comments

Comments
 (0)