Docker中部署redis
一、在docker中拉去redis镜像
docker pull redis
二、在本机给redis创建配置文件
1.mkdir –p /root/docker/redis/conf
2.上传redis自带的redis.conf到改目录下。
注意:有可能xftp无法链接,可以先传到其他目录,在linux中移动到该目录
3.编辑redis.conf配置文件
3.1.把bind 127.0.0.1 注释掉
3.2.通过requirepass设置密码
3.3.daemonize后台运行一定要为no
三、启动redis容器
docker run -d -p 6379:6379 --network mtx --network-alias redis -v /root/docker/redis/conf/redis.conf:/etc/redis/redis.conf --privileged=true redis redis-server /etc/redis/redis.conf
查看redis容器是否启动成功
docker ps
标签:network,配置文件,部署,redis,--,conf,docker From: https://www.cnblogs.com/shaohuang/p/17506370.html