-
Notifications
You must be signed in to change notification settings - Fork 310
Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels