Created
          January 3, 2022 23:45 
        
      - 
      
- 
        Save HRKings/5c93881342c0a8b43da3e914cc5bc00e to your computer and use it in GitHub Desktop. 
    Neo4j Template Docker Compose File
  
        
  
    
      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 | |
| environment: | |
| NEO4J_AUTH: ${NEO4J_USER:-neo4j}/${NEO4J_USER:-password} | |
| volumes: | |
| - ./neo4j/conf:/conf | |
| - ./neo4j/data:/data | |
| - ./neo4j/import:/import | |
| - ./neo4j/logs:/logs | |
| - ./neo4j/plugins:/plugins | |
| ports: | |
| - 7474:7474 | |
| - 7687:7687 | |
| restart: unless-stopped | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment