Skip to the content.
下载 redis 镜像
$ docker pull redis
$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
redis               latest              f9b990972689        5 days ago          104MB
目录配置

基于目录

/home/dir/application/docker/redis

数据目录

mkdir data

下载reids配置文件

$ wget https://raw.githubusercontent.com/antirez/redis/6.0.1/redis.conf -O redis.conf

修改配置:

运行 redis 容器
$ docker run --privileged=true \
	-p 6379:6379 \
	-v `pwd`/data:/data \
	-v `pwd`/redis.conf:/etc/redis/redis.conf  \
	--name myredis \
	--restart=always \
	-d redis redis-server /etc/redis/redis.conf
测试 Redis 连接
$ docker exec -ti myredis redis-cli -h localhost -p 6379

向外部拷贝 Redis 客户端

$ docker cp ee:/usr/local/bin/redis-cli ./

查看容器的 IP 地址

$ docker inspect myredis|grep IPAddress
            "SecondaryIPAddresses": null,
            "IPAddress": "172.17.0.3",
                    "IPAddress": "172.17.0.3",

测试连接(容器内部连接)

$ ./redis-cli -h 172.17.0.3 -p 6379

测试连接(外部连接)

$ ./redis-cli -h localhost -p 6379
查看日志
$ docker logs -f myredis