Skip to content
Snippets Groups Projects

DALIA's backend triplestore powered by Apache Jena Fuseki

Using the Docker images

We provide reusable Docker images via GitLab's container registry.

Maintained image tags

  • latest: built from the main branch; used in DALIA's production system
  • dev: build from the dev branch; used in DALIA's staging system

To start a Fuseki instance

Without mounting the database directory as volume:

docker run --rm -it -p 3030:3030 --name fuseki registry.git.rwth-aachen.de/dalia/backend/fuseki:latest

With mounting the database directory as volume:

docker run --rm -it -p 3030:3030 -v ${PWD}/data:/database --name fuseki registry.git.rwth-aachen.de/dalia/backend/fuseki:latest