Neo4j - Graph database platform
Everything you need to deploy Neo4j with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Neo4j up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Neo4j with:
blastdock init neo4j
Interactive mode:
blastdock init neo4j -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Neo4j installation with these configuration options.
HTTP port
Bolt port
Admin password
Complete Docker Compose configuration for Neo4j deployment.
version: '3.8'
services:
neo4j:
image: neo4j:latest
container_name: {{ project_name }}_neo4j
restart: unless-stopped
ports:
- "7474"
- "7687"
environment:
0: NEO4J_AUTH=neo4j/{{ admin_password }}
1: NEO4J_dbms_memory_pagecache_size=1G
2: NEO4J_dbms.memory.heap.initial_size=1G
3: NEO4J_dbms_memory_heap_max__size=1G
volumes:
- /data
- /logs
- /var/lib/neo4j/import
- /plugins
networks:
- neo4j_network
volumes:
neo4j_data:
driver: local
neo4j_logs:
driver: local
neo4j_import:
driver: local
neo4j_plugins:
driver: local
networks:
neo4j_network:
driver: bridge