Docker 中 安装Redis
1、拉取镜像
docker pull redis:5.0.9
查看拉去的镜像: docker images
2、创建目录
mkdir -p /opt/redis/conf mkdir -p /opt/redis/data
3、配置文件内容(/opt/redis/conf/redis.conf)
(1)下载:从官网下载:http://download.redis.io/redis-stable/redis.conf
(2)修改启动默认配置
- bind 127.0.0.1 #注释掉这部分,这是限制redis只能本地访问
- protected-mode no #默认yes,开启保护模式,限制为本地访问
- daemonize yes #默认no,改为yes意为以守护进程方式启动,可后台运行,除非kill进程,改为yes会使配置文件方式启动redis失败
- dir ./ #输入本地redis数据库存放文件夹(可选)
- appendonly yes #redis持久化(可选)
4、启动的脚本
docker run -p 6379:6379 --name redis_5.0.9 -v /opt/redis/conf/redis.conf:/etc/redis/redis.conf -v /opt/redis/data:/data -d redis:5.0.9 redis-server /etc/redis/redis.conf --appendonly yes