Neo4j
Setup
# neo4j docker-compose file
version: '2'
services:
neo4j:
image: docker.io/bitnami/neo4j:4
ports:
- '7474:7474'
- '7473:7473'
- '7687:7687'
volumes:
- 'neo4j_data:/bitnami'
environment:
- NEO4J_PASSWORD:vamsi
- NEO4J_HOST:0.0.0.0
- NEO4J_BOLT_PORT_NUMBER:7687
- NEO4J_HTTP_PORT_NUMBER:7474
- NEO4J_HTTPS_PORT_NUMBER:7473
volumes:
neo4j_data:
driver: localTo create the container, save the above file with name "docker-compose.yml" and run following command
Open in Browser: http://127.0.0.1:7474/browser/, and you will find neo4j UI
Stepwise Learning
Reference For Further Reading
Last updated