#拉取 Redis 镜像
C:\Users\WYJ>docker pull redis
Using default tag: latest
latest: Pulling from library/redis
683abbb4ea60: Already exists
259238e792d8: Pull complete
78399601c709: Pull complete
f397da474601: Pull complete
c57de4edc390: Pull complete
b2ea05c9d9a1: Pull complete
Digest: sha256:5534b92530acc653f0721ebfa14f31bc718f68bf9070cbba25bb00bc7aacfabb
Status: Downloaded newer image for redis:latest
#查看拉取的镜像
C:\Users\WYJ>docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
redis latest 71a81cb279e3 days ago .4MB
#运行镜像容器
C:\Users\WYJ>docker run -p : --name redis -v /d/docker/data/redis:/data -d redis redis-server --appendonly yes
f7033e3efc840c921a125c8cdeb8c1747a75e7e950444c4265bf3d2fa0c3df7f
#查看运行容器日志
C:\Users\WYJ>docker logs redis
:C Jul ::28.663 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
:C Jul ::28.663 # Redis version=4.0., bits=, commit=, modified=, pid=, just started
:C Jul ::28.663 # Configuration loaded
:M Jul ::28.666 * Running mode=standalone, port=.
:M Jul ::28.667 # WARNING: The TCP backlog setting of cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of .
:M Jul ::28.667 # Server initialized
:M Jul ::28.667 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
:M Jul ::28.668 * Ready to accept connections
#查看运行的容器
C:\Users\WYJ>docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f7033e3efc84 redis "docker-entrypoint.s…" seconds ago Up seconds 0.0.0.0:->/tcp redis
#进入容器内
C:\Users\WYJ>docker exec -it redis redis-cli
127.0.0.1:>