Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 1.88 KB

README.md

File metadata and controls

46 lines (28 loc) · 1.88 KB

Supported tags and respective Dockerfile links

What is RDF Delta ?

RDF Delta is a system for recording and publishing changes to RDF Datasets.

For more information, please visit https://afs.github.io/rdf-delta/.

How to use this image

Run a patch log server

Starting a patch log server instance is simple:

$ docker run --name rdf-delta-server -d -p 1066:1066 conjecto/rdf-delta:tag

... where rdf-delta-server is the name you want to assign to your container, tag is the tag specifying the RDF Delta version you want. See the list above for relevant tags.

Example stack.yml for blazegraph:

version: '3.1'

services:

    rdf-delta:
        image: conjecto/rdf-delta
        environment:
            JAVA_XMS: 512m
            JAVA_XMX: 1g

Try in PWD

Run docker stack deploy -c stack.yml conjecto/rdf-delta (or docker-compose -f stack.yml up), wait for it to initialize completely, and visit http://swarm-ip:1066, http://localhost:1066, or http://host-ip:1066 (as appropriate).