Code Monkey home page Code Monkey logo

docker-neo4j's Introduction

neo4j

Neo4j is a highly scalable, robust (fully ACID) native graph database. Neo4j is used in mission-critical apps by thousands of leading, startups, enterprises, and governments around the world.

With the Dockerfile on repository you've a docker neo4j community edition image ready to go.

Setup

Build and run:

git clone https://github.com/neildobson71/docker-neo4j
cd docker-neo4j
docker build .

Create and start the container (with no authorization, port 20001):

docker run -i -t -d -e NEO4J_AUTH=none --name neo4j -v $HOME/neo4j-data:/data --cap-add=SYS_RESOURCE -p 20001:7474 <image-id>

Access to http://127.0.0.1:20001 with your browser.

Authentication

You can add authorization credentials or disable authorization by passing NEO4J_AUTH as environment variable.

  • To set username/password:
docker run -i -t -d -e NEO4J_AUTH=username:password --name neo4j --cap-add=SYS_RESOURCE -p 7474:7474 <image-id>
  • To bypass authentication:
docker run -i -t -d -e NEO4J_AUTH=none --name neo4j --cap-add=SYS_RESOURCE -p 7474:7474 <image-id>

Volumes

The neo4j data is stored in $HOME/neo4j-data.

  • To use a volume to store the database:
docker run -i -t -d --name neo4j --cap-add=SYS_RESOURCE -v $HOME/neo4j-data:/data -p 7474:7474 <image-id>

docker-neo4j's People

Contributors

ahmetkizilay avatar bsphere avatar nad-au avatar programmerq avatar tpires avatar zarthross avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.