I'm using ReJSON
, which a modified_enhanced version of redis. I'm wondering if that can affect the functionment of the common command.
I would persist my data, to make so, I have created a custom volume. But the data doesn't persist when I stop, then restart my container. The official doc talks about a /data
directory to bind in order to mount the volume.
I have tried to do:
~$ docker run --name rejson -d -p 6384:6379 -v $PWD/volumes:/data redislabs/rejson
I have also tested:
~$ docker run --name rejson -d -p 6384:6379 -v $PWD/volumes:/data redislabs/rejson --appendonly
doesn't work either,
any hint would be great,
thanks