Open stephan-nordnes-eriksen opened 6 years ago
I updated the usage section of the readme a little:
docker network create --attachable --driver overlay redis
scripts/bootstrap.sh
.bash scripts/bootstrap.sh latest
docker run --rm --network redis -ti redis:4.0.9-alpine redis-cli -h redis
To access the redis cluster outside of docker, port 6379 needs to be expose. This can be done by adding ports to the docker-compose file:
...
redis:
image: thomasjpfan/redis-look
ports:
- "6379:6379"
...
I am trying to connect to the cluster with redis-cli, but am having some issues. Do you have an example of how to do this?
I am logged in to the machine running the docker master node.