dockerfiles/neo4j
kev 0478313563 update neo4j 2016-05-17 10:32:38 +08:00
..
README.md update neo4j 2016-05-17 10:32:38 +08:00
docker-compose.yml update neo4j 2016-04-27 08:28:51 +08:00

neo4j

Neo4j is a highly scalable native graph database that leverages data relationships as first-class entities, helping enterprises build intelligent applications to meet todays evolving data challenges.

docker-compose

neo4j:
  image: neo4j
  ports:
    - "7474:7474"
    - "7687:7687"
  volumes:
    - ./data:/data
  environment:
    - NEO4J_CACHE_MEMORY=4G
  ulimits:
    nofile:
      soft: 65535
      hard: 65535
  restart: always

up and running

$ docker-compose up -d

$ docker-compose exec neo4j bin/neo4j-shell
>>> man
>>> export person_id="123"
>>> env
>>> create index on :Person(id);
>>> create (p:Person {id: {person_id}}) return p;
>>> match (p:Person {id: {person_id}}) return p;
>>> exit