-
Notifications
You must be signed in to change notification settings - Fork 82
Description
As I have mentioned in a comment on a docker-neo4j issue
The documentation for plugin and docker mount is either linking the wrong folder or not showing that it may be needed to set server.directories.plugins to the /plugins folder. This is needed since the /conf and /plugins in the Home Folder have no symlink to the /plugins and /config folder which docker mounts the volumes on (the Documentation also uses /config not /conf).
Here again some examples I found, but I'm not sure if it is all:
For Plugins it works but that is because server.directories.plugins is set to \plugins instead of \var\lib\neo4j\plugin from the beginning. HOWEVER installing plugins through the NEO4J_PLUGINS=["apoc","apoc-extended"] does then not work, because \var\lib\neo4j\plugin is not set as the Plugin directory and that's where the Docker image installs them.
Both Methods should be using the same folder, or there should be a mention in the documentation that for one of them server.directories.plugins needs to be changed.