I am running standalone Redis using docker-hub image with volume
forpersistent storage(--appendonly yes), however after a while all the keys from the Redis are disappearing.
I haven't set the EXPIRE time for any of the keys.
Runnning the docker with following command :
docker run -p 6379:6379 -v redis-vol:/data -d redis redis-server --appendonly yes
Can anyone please let me know what might be going wrong?
Thank you.