how to connect the amothic/neptune container to the volume?
I need to know which directory needs to attach to containeer. so that the data is stored safely. even after a restart.
Solution
Check out the
You may also want to use a mapped directory from your local machine to ensure data is not lost if the contianer is deleted: https://docs.docker.com/storage/volumes/
graphLocation and graphFormatconfig options here: https://tinkerpop.apache.org/docs/current/reference/#tinkergraph-configurationYou may also want to use a mapped directory from your local machine to ensure data is not lost if the contianer is deleted: https://docs.docker.com/storage/volumes/
Docker Documentation
Learn how to create, manage, and use volumes instead of bind mounts for persisting data generated and used by Docker.
0