I am using Neo4j using Docker image to up the database on Windows 10.
The command:
docker run --publish=7474:7474 --publish=7687:7687 --volume=$HOME/neo4j/data:/data neo4j
Now I want to delete some files in the folder named 'default.graphdb'.
I can enter the Docker container using command
docker exec -it <docker-container-id> /bin/bash
Please let me know where can I find the folder, and how to delete few files or the entire folder.