Simple RDF/Linked Data Viewer for remote Jena Fuseki/SPARQL endpoints
Usage:
docker run --rm \
-p 8001:80 \
-e ENDPOINT_URL=http://localhost:3030/geods \
--init \
aksw/ldv
To enable searching for source graphs of a statement (when using named graphs):
... \
-e GRAPH_LOOKUP=yes \
...
If you have an existing deployment of Ontodia Graph Explorer that you want to link to:
... \
-e EXPLORE_URL=http://localhost:8002/ \
...
Or in docker compose:
services:
ldv:
image: aksw/ldv
init: true
ports:
- 8001:80
environment:
- ENDPOINT_URL=http://localhost:3030/geods
- EXPLORE_URL=http://localhost:8002/
Now visit http://localhost:8001/*?http://example.org/country/DEU (an existing IRI in your knowledge graph)