Skip to content

Commit 039ca24

Browse files
committed
further updates
1 parent b55df1e commit 039ca24

File tree

7 files changed

+21
-16
lines changed

7 files changed

+21
-16
lines changed

modules/ROOT/pages/docker/clustering.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[role=enterprise-edition]
22
[[docker-cc]]
3-
= Clustering
4-
:description: How to deploy a Causal Cluster setup in a containerized environment without an orchestration tool.
3+
= Deploy a Neo4j cluster on Docker
4+
:description: How to deploy a Causal Cluster setup in a containerized environment without an orchestration tool.
55

66
[NOTE]
77
====

modules/ROOT/pages/docker/configuration.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[[docker-neo4j-configuration]]
2-
= Configuration
3-
:description: This chapter describes how configure Neo4j to run in a Docker container.
2+
= Modify the default configuration 
3+
:description: This chapter describes how configure Neo4j to run in a Docker container.
44

55
The default configuration provided by this image is intended for learning about Neo4j, but must be modified to make it suitable for production use.
66
In particular, the default memory assignments to Neo4j are very limited (`NEO4J_dbms_memory_pagecache_size=512M` and `NEO4J_dbms_memory_heap_max__size=512M`), to allow multiple containers to be run on the same server.

modules/ROOT/pages/docker/docker-compose-standalone.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
:description: Running Neo4j in a Docker container using Docker Compose
2+
:page-role: enterprise-edition new-4.4.38
3+
24
[[docker-compose-neo4j-standalone]]
35
= Deploy a Neo4j standalone server using Docker Compose
46

modules/ROOT/pages/docker/index.adoc

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,21 @@
44

55
This chapter describes the following:
66

7-
* xref:docker/introduction.adoc[Introduction] -- Introduction to running Neo4j in a Docker container.
8-
* xref:docker/configuration.adoc[Configuration] -- How to configure Neo4j to run in a Docker container.
7+
* xref:docker/introduction.adoc[Get started with Neo4j in Docker] -- Introduction to running Neo4j in a Docker container.
8+
* xref:docker/mounting-volumes.adoc[Persist data with Docker volumes] -- How and where to mount persistent storage to the Docker container.
9+
* xref:docker/configuration.adoc[Modify the default configuration] -- How to configure Neo4j to run in a Docker container.
10+
* xref:docker/plugins.adoc[Plugins] -- How to load plugins when using Neo4j in Docker.
911
* xref:docker/docker-compose-standalone.adoc[Deploy a Neo4j server with Docker Compose] -- How to set up a Neo4j server with Docker Compose using a basic authentication mechanism or Docker secrets.
10-
* xref:docker/clustering.adoc[Clustering] -- How to set up Causal Clustering when using Docker.
11-
* xref:docker/operations.adoc[Docker specific operations] - Descriptions of various operations that are specific to using Docker.
12+
* xref:docker/clustering.adoc[Deploy a Neo4j cluster on Docker] -- How to set up Causal Clustering when using Docker.
13+
* xref:docker/operations.adoc[Docker specific operations] - Descriptions of various `neo4j-admin` and `cypher-shell` operations that are specific to using Docker.
1214
* xref:docker/security.adoc[Security] - Information about using encryption with the Docker image.
1315
* xref:docker/maintenance.adoc[Docker maintenance operations] How to maintain Neo4j when running in a Docker container.
1416
* xref:docker/ref-settings.adoc[Docker specific configuration settings] - A conversion table for the Neo4j configuration settings to Docker format.
1517

1618

1719
[NOTE]
20+
====
1821
Docker does not run natively on macOS or Windows.
1922
For running Docker on macOS and Windows, please consult the https://docs.docker.com/engine/installation[documentation provided by Docker].
20-
23+
====
2124

modules/ROOT/pages/docker/introduction.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:description: An introduction to how Neo4j runs in a Docker container.
22
[[docker-overview]]
3-
= Introduction
3+
= Get started with Neo4j in Docker 
44

55
Docker can be downloaded for macOS, Windows, and Linux operating systems from https://www.docker.com/get-started.
66
DockerHub hosts an link:https://hub.docker.com/_/neo4j[official Neo4j image] that provides a standard, ready-to-run package of Neo4j Community Edition and Enterprise Edition for a variety of versions.
@@ -44,7 +44,7 @@ docker run \
4444
neo4j:{neo4j-version-exact}
4545
----
4646

47-
You can try out your Neo4j container by opening _http://localhost:7474/_ (the Neo4j's Browser interface) in a web browser.
47+
You can try out your Neo4j container by opening _http://localhost:7474/_ (the Neo4j's Browser interface) in a web browser.
4848
By default, Neo4j requires authentication and prompts you to log in with a username/password of `neo4j/neo4j` at the first connection.
4949
You are then prompted to set a new password.
5050

@@ -76,7 +76,7 @@ Please note that there is currently no way to change the initial username from `
7676
[[docker-volumes]]
7777
== Persisting data using Volumes
7878

79-
The `--volume` option maps a local folder to the container, where you can persist data between restarts.
79+
The `--volume` option maps a local folder to the container, where you can persist data between restarts.
8080

8181
[source, shell, subs="attributes"]
8282
----

modules/ROOT/pages/docker/mounting-volumes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:description: How to use persistent storage when using Neo4j in Docker.
22
[[docker-volumes]]
3-
= Persisting data with Docker volumes
3+
= Persist data with Docker volumes
44

55
Docker containers are ephemeral.
66
When a container is stopped, any data written to it is lost.

modules/ROOT/pages/docker/operations.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[[docker-operations]]
22
= Docker specific operations
3-
:description: How to use Neo4j tools when running Neo4j in a Docker container.
3+
:description: How to use Neo4j tools when running Neo4j in a Docker container.
44

55
[[docker-neo4j-admin]]
66
== Use Neo4j Admin
@@ -165,7 +165,7 @@ match (n:Actors)-[r]->(m:Movies) return n.name AS Actors, m.title AS Movies, m.y
165165
.Invoke `cypher-shell` with the `--file` option
166166
[source, shell, subs="attributes"]
167167
----
168-
# Put the example.cypher file in the local folder ./examples.
168+
# Put the example.cypher file in the local folder ./examples.
169169
170170
# Start a Neo4j container and mount the ./examples folder inside the container:
171171
@@ -184,7 +184,7 @@ docker exec --interactive --tty <containerID/name> cypher-shell -u neo4j -p <pas
184184
.Use the `:source` command to run a Cypher script file
185185
[source, shell, subs="attributes"]
186186
----
187-
# Put the example.cypher file in the local folder ./examples.
187+
# Put the example.cypher file in the local folder ./examples.
188188
189189
# Start a Neo4j container and mount the ./examples folder inside the container:
190190

0 commit comments

Comments
 (0)