In order for this complex example setup to work, you must enable all plugins before the Fuseki server will start up successfully.
- List available plugins.
./dc run --rm --entrypoint plugins fuseki list- 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 # ...- Start the server.
./dc up