1.下载配置文件
http://download.redis.io/redis-stable/redis.conf
2.修改配置文件
Ⅰ.bind 127.0.0.1改为 bind 0.0.0.0或者 # bind 127.0.0.1(注释掉即可)
Ⅱ.protected-mode no //关闭保护模式
Ⅲ.appendonly yes //持久化
Ⅳ.requirepass 123456 //密码
Ⅵ.maxmemory-policy allkeys-lru //设置过期淘汰(无需修改)
...根据需要修改
3.启动
docker run -p 6379:6379 -v 本地路径/redis.conf:/usr/local/etc/redis/redis.conf --name myredis redis redis-server /usr/local/etc/redis/redis.conf
网友评论