Skip to content

Instantly share code, notes, and snippets.

@yangyang5214
Created November 2, 2023 08:56
Show Gist options
  • Save yangyang5214/7cfe68e07a9aa241176b11f4ce3c1270 to your computer and use it in GitHub Desktop.
Save yangyang5214/7cfe68e07a9aa241176b11f4ce3c1270 to your computer and use it in GitHub Desktop.
neo4j install apoc with docker

docker run neo4j

  • install
cd /data/neo4j/data
mkdir plugins

pushd plugins
wget https://github.com/neo4j/apoc/releases/download/5.13.0/apoc-5.13.0-core.jar
popd
  • run
docker run \
    --name neo4j \
    -p7474:7474 -p7687:7687 \
    -d \
    -v /data/neo4j/data:/data \
    -v /data/neo4j/logs:/logs \
    -v /data/neo4j/import:/var/lib/neo4j/import \
    -v /data/neo4j/plugins:/plugins \
    --env NEO4J_AUTH=neo4j/pwd \
    neo4j:5.13.0

Reference

https://github.com/neo4j/apoc/

https://neo4j.com/docs/apoc/5/installation/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment