In this article, I will show you how to deploy a Redis instance through docker in minutes.
Install Docker engine: https://docs.docker.com/get-docker/
Just run a simple command below ( It will pull docker image for you and start your Redis docker image
docker run -d --name harsh-redis -p 6379:6379 redis
I have a container name `harsh-redis`
If you have to install docker-engine you can access the DashBoard a check our image and container running
Redis Viewer Tool