[フレーム]
Docs
Neo4j DBMS
Neo4j Aura
Neo4j Tools
Neo4j Graph Data Science
Cypher Query Language
Generative AI
Create applications
Connect data sources
Labs
GenAI Ecosystem
Developer Tools
Frameworks & Integrations
RDF & Linked Data
Get Help
Community Forum
Discord Chat
Product Support
Neo4j Developer Blog
Neo4j Videos
GraphAcademy
Beginners Courses
Data Scientist Courses
Generative AI Courses
Neo4j Certification
Get Started Free
Search
Skip to content
Raise an issue

Neo4j on Docker

The Neo4j Graph Data Science library is available as a plugin for Neo4j on Docker. You can run the latest version of Neo4j with GDS included using the following Docker command:

docker run -it --rm \
 --publish=7474:7474 --publish=7687:7687 \
 --user="$(id -u):$(id -g)" \
 --env NEO4J_AUTH=none \
 --env NEO4J_PLUGINS='["graph-data-science"]' \
 neo4j:latest

Enterprise edition

You can use the following command to run the latest version of Neo4j Enterprise with GDS Enterprise:

docker run -it --rm \
 --publish=7474:7474 --publish=7687:7687 \
 --user="$(id -u):$(id -g)" \
 --volume=$HOME/neo4j/licenses:/licenses \
 --env NEO4J_AUTH=none \
 --env NEO4J_PLUGINS='["graph-data-science"]' \
 --env NEO4J_ACCEPT_LICENSE_AGREEMENT=yes \
 --env NEO4J_gds_enterprise_license__file=/licenses/gds \
 neo4j:enterprise

The command expects the GDS Enterprise license file at $HOME/neo4j/licenses. See GDS Enterprise Edition for more details on how to obtain a GDS Enterprise license.

AltStyle によって変換されたページ (->オリジナル) /