Skip to content

Instantly share code, notes, and snippets.

@ramosmerino
Created September 22, 2025 03:30
Show Gist options
  • Select an option

  • Save ramosmerino/ee7e37a8928d675a45e134451142e68f to your computer and use it in GitHub Desktop.

Select an option

Save ramosmerino/ee7e37a8928d675a45e134451142e68f to your computer and use it in GitHub Desktop.
Neo4j docker-compose
version: '3.9'
services:
neo4j:
container_name: neo4j
image: neo4j:latest
ports:
- 7474:7474
- 7687:7687
environment:
- NEO4J_AUTH=neo4j/password
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
- NEO4J_PLUGINS=["apoc", "graph-data-science"]
volumes:
- ./neo4j_db/data:/data
- ./neo4j_db/logs:/logs
- ./neo4j_db/import:/var/lib/neo4j/import
- ./neo4j_db/plugins:/plugins
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment