To set up redis (for caching) using Docker, run the following command:
docker run -d --name redis -p 6379:6379 redisTo execute commands using the redis-cli, use this command, which will
put you in an interactive cli environment.
docker exec -it redis redis-cli