v5.26.27.0 Neo4j CE 5.26.27 LTS Jun 12, 2026
Enterprise-grade features
for Neo4j® Community Edition
DozerDB is a free, GPL-licensed plugin that extends Neo4j® Community Edition with production-grade capabilities for demanding deployments. It is not Neo4j® Enterprise Edition, it's an independent open source project.
- 200,000+ downloads
- 100% Free & GPL Open Source
- Security-hardened containers
- Born from a US Government need
Not affiliated with or endorsed by Neo4j, Inc. Neo4j® is a registered trademark of Neo4j, Inc.
// downloads
Get DozerDB
Current release v5.26.27.0 for Neo4j Community Edition 5.26.27 LTS, released June 12, 2026. Pick the format that fits your environment.
Multi-arch image (amd64 / arm64), hardened for sensitive environments:
docker pull graphstack/dozerdb:5.26.27.0
IBM Power9 (ppc64le):
docker pull graphstack/dozerdb:5.26.27.0-ppc64le
See the quick start for a full docker run command with volumes and APOC enabled.
Pre-packaged distribution: Neo4j Community compiled from the official source with the DozerDB plugin installed and the classpath configured.
dozerdb-5.26.27.0-unix.tar.gzThen run it like any Neo4j Community install of the same version: ./bin/neo4j console or ./bin/neo4j start.
Pre-packaged distribution: Neo4j Community compiled from the official source with the DozerDB plugin installed and the classpath configured.
dozerdb-5.26.27.0-windows.zipThen run it like any Neo4j Community install of the same version: bin\neo4j console or bin\neo4j start.
Drop-in plugin for an existing Neo4j Community installation, either yours or one you compiled yourself.
dozerdb-plugin-5.26.27.0.jarGoes in $NEO4J_HOME/lib. See the quick start for the two-step install.
More artifacts
- open-gds-2.13 releases for Neo4j 5.26.* : OpenGDS graph data science plugin 2.13 for Neo4j CE 5.26.*
- Helm charts : Kubernetes deployments
- Docker build & compose resources : official image configurations
Looking for older versions? Jump to the archive ↓
// quick start
Running in 60 seconds
Docker
Everything wired up: volumes, Open Graph Data Science (GDS) APOC, and unrestricted procedures for easy exploration:
docker run \
-p7474:7474 -p7687:7687 \
-v $HOME/neo4j/data:/data \
-v $HOME/neo4j/logs:/logs \
-v $HOME/neo4j/import:/var/lib/neo4j/import \
-v $HOME/neo4j/plugins:/plugins \
--env NEO4J_AUTH=neo4j/password \
--env NEO4J_PLUGINS='["apoc","open-gds"]' \
--env NEO4J_apoc_export_file_enabled=true \
--env NEO4J_apoc_import_file_enabled=true \
--env NEO4J_dbms_security_procedures_unrestricted='*' \
graphstack/dozerdb:5.26.27.0
- Default login is neo4j/password (set in the command above), so change it.
- Ran older Neo4j or DozerDB containers before? Back up and remove the generated $HOME/neo4j folder if you hit conflicts.
Direct download
The packaged distribution is Neo4j Community compiled from source with the DozerDB plugin already in lib/ and the classpath configured, with nothing extra to wire up. Just download, extract, and run.
- Download the current Linux/macOS or Windows distribution from the downloads section.
- Extract the archive.
-
Start it from the extracted folder:
./bin/neo4j consolebin\neo4j console - Open http://localhost:7474 and log in with neo4j/neo4j, and you'll be prompted to set a new password.
Add APOC (optional)
- Download the newest APOC Core jar from github.com/neo4j/apoc/releases into the plugins/ folder.
-
Create conf/apoc.conf with:
apoc.import.file.enabled=true apoc.export.file.enabled=true apoc.import.file.use_neo4j_config=true- apoc.import.file.enabled: import JSON, CSV, or GraphML via APOC procedures.
- apoc.export.file.enabled: export graph data out to files.
- apoc.import.file.use_neo4j_config: respect Neo4j's directory restrictions, keeping file access inside the import/ folder.
-
In conf/neo4j.conf, allow the APOC procedures:
dbms.security.procedures.unrestricted=apoc.*
Add Open Graph Data Science (open-gds) (optional)
- Download the newest open-gds jar from github.com/DozerDB/graph-data-science/releases into the plugins/ folder.
-
In conf/neo4j.conf, allow the GDS procedures:
dbms.security.procedures.unrestricted=gds.*
Plugin install
Two steps on an existing Neo4j Community installation:
export CLASSPATH_PREFIX=$NEO4J_HOME/lib/dozerdb-plugin-5.26.27.0.jar
set CLASSPATH_PREFIX=%NEO4J_HOME%\lib\dozerdb-plugin-5.26.27.0.jar
- Download the plugin jar into $NEO4J_HOME/lib.
- Set CLASSPATH_PREFIX to the jar's absolute path (above) and start Neo4j as usual.
Verify
You'll see this banner in the startup log:
*****************************************************************************
************************ Enhanced By DozerDB Plugin *************************
*****************************************************************************
The browser also shows “Enhanced by DozerDB” after you log in.
Try it
Enterprise features, right away:
CREATE DATABASE test1;
:use test1
CREATE CONSTRAINT unique_movie_title IF NOT EXISTS
FOR (movie:Movie) REQUIRE movie.title IS UNIQUE;
// features
Enterprise features, unlocked
Capabilities the Community Edition leaves out, free for everyone. New features land here as they ship.
Multi-Database
CREATE, DROP, START and STOP databases, switch with :use, plus auto-start of all databases on boot.
Schema Constraints
Enterprise schema features such as property existence and uniqueness constraints to keep production data honest.
Telemetry Disabled
Outgoing metrics and phone-home reporting are switched off, so nothing leaves your network. Built for air-gapped and classified environments.
Hardened Containers
Security-hardened Docker images: non-root execution, minimized dependencies, vulnerability scanning. More for government users →
OpenGDS
We compile and publish Open GDS so the graph data science library runs on Neo4j Community & DozerDB, with no Enterprise license required.
Free & Open. Forever.
100% GPL open source. No enterprise tier, no license negotiations, no per-core pricing. That's the whole point of the project.
// why dozerdb
What is DozerDB
DozerDB enhances Neo4j® Community Edition with the enterprise features it's missing, 100% free and open source under the GPL license. Our goal is simple: make production-grade graph capabilities available to everyone, at no cost.
When Neo4j closed the source of its Enterprise Edition, the US government was left without a free and open graph database it could trust in its environments. DozerDB originated from that need, and today it serves government and commercial teams around the world.
Not affiliated with or endorsed by Neo4j, Inc. Neo4j® is a registered trademark of Neo4j, Inc.
Three ways to run it
Plugin
Drop the jar into your existing Neo4j Community installation, set one environment variable, and you're off and running.
Pre-packaged distribution
Download a ready-to-run distribution with the plugin already configured, a good fit when your organization whitelists specific software.
Docker
Spin up a DozerDB-enhanced graph in seconds with hardened, multi-arch container images, Kubernetes-ready via our Helm charts.
// us government
Built for US Government environments
DozerDB exists because the government needed a free and open graph database it could deploy with confidence. Our container hardening follows the practices sensitive environments expect:
- Minimal, well-maintained base images
- Non-root execution
- Minimized dependencies
- Offline-build discipline
- Vulnerability scanning
GPL-licensed and fully open source, deployable where commercial licensing is impractical, including air-gapped and classified networks. Questions about accreditation or hardening? Reach us on GitHub.
// support
Support
Get help two ways: lean on the community, or bring in the team that sponsors DozerDB.
Community support
Free and open to everyone. Best-effort help from the maintainers and the community:
Professional support
DozerDB is sponsored by Greystones Group. When you need hands-on help, their team works alongside yours:
- Deployment, including air-gapped and classified networks
- Security hardening and compliance support
- ATO and RMF accreditation support
- Integration and team training
Greystones solutions are available through government contract vehicles you already use.
Supporting US Navy, Army, Treasury, and other federal missions.
Learn More// community
Contributing
DozerDB is built in the open. Issues, pull requests, and feature ideas are all welcome.
Contribute on GitHub// graph data science
Graph Data Science Plugin
We compile and publish Open Graph Data Science (open-gds) so the Graph Data Science library runs on Neo4j® Community & DozerDB, with no Enterprise license required. Download it from DozerDB/graph-data-science releases.
In the Docker image, load it by adding "open-gds" to NEO4J_PLUGINS:
--env NEO4J_PLUGINS='["apoc","open-gds"]' \
--env NEO4J_apoc_export_file_enabled=true \
--env NEO4J_apoc_import_file_enabled=true \
--env NEO4J_dbms_security_procedures_unrestricted='*' \
Not using Docker? See Add open-gds in the quick start for installing the jar on a direct-download distribution.
// archive
Older versions
Previous releases for matching Neo4j Community versions. Remember: the first three digits of a DozerDB version match the Neo4j CE version it targets. Need a version not listed? Open a ticket.
5.x series 14 versions
| Version | Plugin | Linux / macOS | Windows |
|---|---|---|---|
| 5.26.3.0 | jar | tar.gz | zip |
| 5.25.1.0-alpha.1 | jar | tar.gz | zip |
| 5.24.2.1-alpha.1 | jar | tar.gz | zip |
| 5.22.0.0-alpha.1 | jar | tar.gz | zip |
| 5.21.2.0-alpha.1 | jar | tar.gz | zip |
| 5.20.0.0-alpha.1 | jar | tar.gz | zip |
| 5.19.0.0-alpha.1 | jar | tar.gz | zip |
| 5.18.1.0-alpha.1 | jar | tar.gz | zip |
| 5.17.0.0-alpha.1 | jar | tar.gz | zip |
| 5.16.0.0-alpha.1 | jar | tar.gz | zip |
| 5.15.0.0-alpha.1 | jar | tar.gz | zip |
| 5.14.0.0-alpha.1 | jar | tar.gz | zip |
| 5.13.0.0-alpha.1 | jar | tar.gz | zip |
| 5.12.0.0-alpha.1 | jar | tar.gz | zip |