Docker Redis Cluster
This configuration is about Redis Cluster. The following implementation creates a cluster with 3 master and 0 replicas.
Optional
If you want to change it just create a Redis block in dokcer-compose.yml
file and edit the docker-data/docker-entrypoint.sh
file, the line
echo "yes" | ruby /redis/src/redis-trib.rb create --replicas 0 173.17.0.2:7000 173.17.0.3:7001 173.17.0.4:7002
add 3 more IPs to the end and change the --replicas 0 to 1.
Production
If you want to use this on production is define for each Redis container to run in static machine.
How To Start
- Download the project
$ git clone http://github.com/cpapidas/docker-compose-redis-cluster
cd docker-compose-redis-cluster
docker-compose build
docker-compose up
ordocker-compose up -d