hello everyone,
I have running elasticsearch in docker container. Data stores like:
"Mounts": [
{
"Type": "bind",
"Source": "/opt/elasticsearch/data",
"Destination": "/usr/share/elasticsearch/data",
"Mode": "",
"RW": true,
"Propagation": "rprivate"
},
I stop container and start Elascticsearch like a service. I want to use the data from /opt/elasticsearch/data but Elasticsearch doesn't see any indexes.
Please explain me what I should do to elasticsearch sees the data from /opt/elasticsearch/data
Thanks in advance!