使用 docker 快速搭建 redis 开发环境
拉取镜像
docker pull redis:5.0
启动容器,映射端口 6379
docker run \ --name redis \ -d \ -p 6379:6379 \ redis:5.0