Skip to content

Latest commit

 

History

History

Example Fuseki Setup with Multiple Custom Plugins

In order for this complex example setup to work, you must enable all plugins before the Fuseki server will start up successfully.

  1. List available plugins.
./dc run --rm --entrypoint plugins fuseki list
  1. Enable all available plugins (those listed by the previous command).
./dc run --rm --entrypoint plugins fuseki enable $(./dc run --rm --entrypoint plugins fuseki list)

The command above effectively calls:

./dc run --rm --entrypoint plugins fuseki enable PLUGIN1 PLUGIN2 # ...
  1. Start the server.
./dc up