docker安装redis
Posted lovoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker安装redis相关的知识,希望对你有一定的参考价值。
1、下载镜像
docker pull redis
2、创建本地目录
mkdir -p /opt/docker/redis/6379/conf
touch /opt/docker/redis/6379/conf/redis.conf
如图:
3、创建容器
docker run -p 6379:6379 --name redis -v /opt/docker/redis/6379/data:/data -v /opt/docker/redis/6379/conf/redis.conf:/etc/redis/redis.conf -d redis redis-server /etc/redis/redis.conf
4、使用 redis 镜像执行 redis-cli 命令连接
docker exec -it redis redis-cli
5、持久化数据
vi /opt/docker/redis/6379/conf/redis.conf
在文件中添加
appendonly yes
QQ群:722865146
分布式商城下载:https://gitee.com/charlinchenlin/wysmall
以上是关于docker安装redis的主要内容,如果未能解决你的问题,请参考以下文章