Neo4j

Neo4j - Graph database platform

7474
Default Port
1
Services
12.0/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init neo4j

Template Overview

Everything you need to deploy Neo4j with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Neo4j
neo4j:latest
Categories
Database
Security Features
Password Protection, Admin User
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Neo4j up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Neo4j with:

Terminal
blastdock init neo4j

Interactive mode:

Terminal
blastdock init neo4j -i

What's Included

Neo4j
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Neo4j installation with these configuration options.

3
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 7474
Required: Yes

Bolt Port

Bolt port

port
Default: 7687
Required: Yes

Admin Password

Admin password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Docker Compose

Complete Docker Compose configuration for Neo4j deployment.

1
Services
4
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
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