File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed
doc/modules/ROOT/pages/installation Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,27 @@ The Neo4j Graph Data Science library is available as a link:https://neo4j.com/do
88docker run -it --rm \
99 --publish=7474:7474 --publish=7687:7687 \
1010 --user="$(id -u):$(id -g)" \
11- -e NEO4J_AUTH=none \
11+ --env NEO4J_AUTH=none \
1212 --env NEO4J_PLUGINS='["graph-data-science"]' \
1313 neo4j:latest
14- ----
14+ ----
15+
16+ == Enterprise edition
17+
18+ You can use the following command to run the latest version of Neo4j Enterprise with GDS Enterprise:
19+
20+ [source, shell]
21+ ----
22+ docker run -it --rm \
23+ --publish=7474:7474 --publish=7687:7687 \
24+ --user="$(id -u):$(id -g)" \
25+ --volume=$HOME/neo4j/licenses:/licenses \
26+ --env NEO4J_AUTH=none \
27+ --env NEO4J_PLUGINS='["graph-data-science"]' \
28+ --env NEO4J_ACCEPT_LICENSE_AGREEMENT=yes \
29+ --env NEO4J_gds_enterprise_license__file=/licenses/gds \
30+ neo4j:enterprise
31+ ----
32+
33+ The command expects the GDS Enterprise license file at `$HOME/neo4j/licenses`.
34+ For more details on how to obtain a GDS Enterprise licence, please visit xref:installation/installation-enterprise-edition.adoc[].
You can’t perform that action at this time.
0 commit comments