拉取镜像
docker pull redis:latest
获取配置文件
wget https://download.redis.io/redis-stable/redis.conf
修改配置文件
#bind 127.0.0.1 #允许远程连接 (注释) protected-mode no #保护模式 appendonly yes #持久化 requirepass abc1234567 #密码
Docker Run
docker run -p 6379:6379 -v /root/install/redis/redis.conf:/etc/redis/redis.conf -v /pan/redis/data:/data --name ry-redis -d redis /etc/redis/redis.conf
版权归属:
不争
本文链接:
http://localhost:8090/archives/debianxi-tong-shi-yong-dockerbu-shu-redisda-kai-wai-wang-fang-wen
许可协议:
本文使用《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》协议授权
评论区