How to run Neo4j?
This page explains how to run a neo4j instance inside docker. For any additional information please refer to the [neo4j documentation](https://neo4j.com/docs/getting-started/)
Run neo4j inside docker
1. enrich the services
section of the docker-compose.yml
of the install with Docker page, with the following neo4j service:
make sure not to forget the APOC plugin (NEO4J_PLUGINS: '["apoc"]'
).
2. enrich the volumes
section of the docker-compose.yml
of the install with Docker page, with the following neo4j volumes:
3. Start the neo4j
service using:
Run Neo4j Desktop
install with Neo4j Desktop, follow installation instructions found here
create a new local DBMS and save your password for later
if the installer notifies you of any ports modification, check the DBMS settings and save the
server.bolt.listen_address
for latermake sure to install the APOC Plugin
Additional options
Additional options to install neo4j are listed here.
Last updated