- Learning Neo4j 3.x(Second Edition)
- Jér?me Baton Rik Van Bruggen
- 69字
- 2021-07-08 09:37:43
Preparing the filesystem
As we want to keep track of the logs and be able to reuse our data, we will need to give the Docker image some access to our filesystem. In our home folder, let's create a Neo4j folder and two subfolders named logs and data.
This script will do it for you on a GNU/Linux platform:
cd ~
mkdir neo4j
cd neo4j
mkdir logs
mkdir data