Thanks, that was it
Hi Stephen, another question regarding Docker for Stardog 7 on Windows: is it possible to run a Stardog server on Docker with security disabled?
I was hoping for something similar as stardog-admin.bat server start --disable-security
, but when I want to try this in Docker using the bash (docker exec -it my-container bash
) I need to stop the server first before I can restart it with disabled security. This will stop the container from running and I don't know how to restart it with disabled security.
Maybe there are alternatives to (partially) disable security as I currently only need it for read operations during development?
You can alter your docker run
command to disable security. It's currently a little cumbersome, but we'll look into making it easier. For now, you would do docker run -v /your/home:/var/opt/stardog -p 5820:5820 --entrypoint /opt/stardog/bin/stardog-admin stardog/stardog server start --foreground --port 5820 --home /var/opt/stardog --disable-security