On 10/09/15 13:56, Reto Gmür wrote:
Hi Stian, all,
I've been using your docker image from dockerhub. However it is using quite
an old version of Fuseki and the last commit in the respective branch of
your fork has been a while ago.
Areyou planning on updating this tothe current fuseki version or is there
another dockerized version of Fuseki.
Cheers,
Reto
The Dockerfile has "ENV FUSEKI_VERSION 2.0.0" That, and the java7 root,
should be all that needs changing.
FYI: to run containerized from a local Fuseki distribution:
Simple "run Fuseki" script for docker:
(may need local variation e.g volume)
"localhost" works in this variation.
-----------------------------------------
#!/bin/bash
# Installation directory : change as needed.
DIR="....../apache-jena-fuseki-2.3.0"
# Caution: --net=host
docker run -it --name Fuseki2 \
-v ${DIR}:/fuseki \
--net=host \
java:8 \
env FUSEKI_HOME=/fuseki /fuseki/fuseki-server --update --mem /ds
-----------------------------------------