Install Redis using Docker in a few minutes



Install Redis using Docker in a few minutes

Install Redis using Docker in a few minutes

Quickly Install Redis using Docker on your Mac. Avoid the hassle of installing Redis on your host machine and leverage the docker capabilities.

Redis is an open-source, networked, in-memory, key-value data store with optional durability.

Official Site: https://redis.io/
Official Docker Image: https://hub.docker.com/_/redis

Commands Executed:
– docker run –name my-redis-server -p 6379:6379 -d redis

– docker exec -it my-redis-server sh

Run the following within the docker container
– redis-cli -v

#install #docker #redis #in-memory #cache #mac #installation