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 themain
branch; used in DALIA's production system -
dev
: build from thedev
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