🔧 How to Run Redis Using Docker
To run Redis locally using Docker and connect it with this project, follow these steps:
1. Make sure Docker is installed
If you don't have Docker installed, download it from:
👉 https://www.docker.com/products/docker-desktop/
2. Run Redis container
You can run Redis with the following simple Docker command:
docker run -d --name redis-cache -p 6379:6379 redis