Skip to content

Instantly share code, notes, and snippets.

@HRKings
Created January 3, 2022 23:45
Show Gist options
  • Save HRKings/5c93881342c0a8b43da3e914cc5bc00e to your computer and use it in GitHub Desktop.
Save HRKings/5c93881342c0a8b43da3e914cc5bc00e to your computer and use it in GitHub Desktop.
Neo4j Template Docker Compose File
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