I'm trying to test this with your docker image, and I'm not having any luck getting it to talk to my Redis server instance.
curl http://localhost:7379/SET/hello/world
curl http://localhost:7379/GET/hello
The commands above work as expected, but I'm not sure where this data is being written because my redis database is empty, even though I get a result back from webdis
I started it with the following command:
docker run -d --name Webdis --restart=unless-stopped -p 7379:7379 -v d:/redis-data/webdis/webdis.json:/etc/webdis.json nicolas/webdis
using the following webdis.json
{
"redis_host": "redis-****.cloud.redislabs.com",
"redis_port": 6379,
"redis_auth": "****",
"http_host": "0.0.0.0",
"http_port": 7379,
"threads": 5,
"pool_size": 20,
"daemonize": false,
"log": "verbose",
"websockets": false,
"acl": [
{
"disabled": ["DEBUG", "FLUSHALL", "FLUSHDB"],
"http_basic_auth": "*:*"
}
]
}
Where is this data being stored, and how can I get it to talk with my specific instance?
I'm trying to test this with your docker image, and I'm not having any luck getting it to talk to my Redis server instance.
The commands above work as expected, but I'm not sure where this data is being written because my redis database is empty, even though I get a result back from webdis
I started it with the following command:
using the following webdis.json
Where is this data being stored, and how can I get it to talk with my specific instance?