NLeSC / rcn_py

RCN is a python package to analyze Research Collaboration Network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker command for Neo4j

Peter9192 opened this issue · comments

I tried running neo4j from docker. Here's a command to run it including the APOC plugin, setting an initial password, and mounting a data folder:

docker run -it --rm \
  --publish 7474:7474 --publish=7687:7687 \
  --env NEO4J_AUTH=neo4j/difficult-password-6128 \
  --env NEO4J_PLUGINS='["apoc"]' \
  --volume=$HOME/nlesc/rcn_py/year2022:/data \
  neo4j:5.9.0

More info see https://neo4j.com/docs/operations-manual/current/docker/introduction/