I have my aerospike data located in /aerospike/data/ directory in my host machine.
I have installed and configured aerospike server in docker by following this link.
Following are my configuration files for docker container Dockerfile, entrypoint.sh, aerospike.conf
I am able to connect to aerospike query console using command below
docker exec -ti my_aerospike_container aql
But select query below is not showing any data:
select * from test;
I also tried to access this data from a webapp deployed in another container in same docker instance. But there also data is not accessible.
Can anyone please help me with this?