Created
September 22, 2025 03:30
-
-
Save ramosmerino/ee7e37a8928d675a45e134451142e68f to your computer and use it in GitHub Desktop.
Neo4j docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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