1、拉取redis镜像
docker pull redis:latest
2、
mkdir /data/redis
3、填充redis.conf文件及根据需求修改相应的配置
•通过官网地址找到对应版本的配置文件
•将配置信息复制到redis.conf中
•常见的修改配置
https://redis.io/docs/latest/operate/oss_and_stack/management/config/
4 、 chmod 777 redis.conf
vim /data/redis/redis.conf
bind 127.0.0.1 # 这行要注释掉,解除本地连接限制
protected-mode no # 默认yes,如果设置为yes,则只允许在本机的回环连接,其他机器无法连接。
daemonize no # 默认no 为不守护进程模式,docker部署不需要改为yes,docker run -d本身就是后台启动,不然会冲突
requirepass 123456 # 设置密码
appendonly yes # 持久化
5.
docker run --name redis \
-p 6379:6379 \
-v /docker-data/redis/redis.conf:/etc/redis/redis.conf \
-v /docker-data/redis:/data \
-d redis redis-server /etc/redis/redis.conf --appendonly yes