1.从docker hub上(阿里云加速器)拉取redis镜像到本地标签为3.2
image.png2. 使用redis3.2镜像创建容器(也叫运行镜像)
1. 使用镜像
docker run -p 6379:6379 -v /zzyyuse/myredis/data:/data -v /zzyyuse/myredis/conf/redis.conf:/usr/local/etc/redis/redis.conf -d redis:3.2 redis-server /usr/local/etc/redis/redis.conf --appendonly yes
2. 新建redis.conf文件
在主机/zzyyuse/myredis/conf/redis.conf目录下新建redis.conf文件
vim /zzyyuse/myredis/conf/redis.conf/redis.conf
3. 测试redis-cli连接上来
docker exec -it 运行着Rediis服务的容器ID redis-cli
image.png
网友评论