Closed AdrianPardo99 closed 1 year ago
@AdrianPardo99 I think it's due to the quoting you have around NEO4JLABS_PLUGINS: "['apoc']"
The value "['apoc']"
is piped straight into jq
to interpret what plugins have been requested. So testing your NEO4JLABS_PLUGINS
value...
echo "['apoc']" | jq
parse error: Invalid numeric literal at line 1, column 8
so that error message, or something similar, probably shows up somewhere in your docker logs. If I swap over the quote type, then it works:
echo '["apoc"]' | jq
[
"apoc"
]
The documentation could possibly be clearer, but there are at least some examples to copy: https://neo4j.com/docs/operations-manual/current/docker/operations/#docker-neo4j-plugins
Guidelines
Error trying to install neo4j:4.4.9 and using APOC plugin in gitaction
To help us understand your issue, please specify important details, primarily:
Is missing something in my configuration or I'm losing something for configuration?