Docker image for Apache Jena's Fuseki triplestore server. Fork of AtomGraph/fuseki-docker
docker build --no-cache . -t fuseki
docker run -p 3030:3030 fuseki
We use the -d
and --restart=always
flags to detach the Fuseki instance and make it automatically restart if the database crashes.
Help (all run options explained):
docker run --rm fuseki --help
In the following examples which use /ds
as the dataset path, these main endpoints are available:
- http://localhost:3030/ds/sparql for SPARQL Query
- http://localhost:3030/ds/update for SPARQL Update
- http://localhost:3030/ds/data for Graph Store (read-write)
- http://localhost:3030/ds/get for Graph Store (read-only)
They can be redefined in configuration.
Post 3030 has to be mapped to be able to access it on the Docker host.