docker上构建redis容器

1.查看docker上的镜像

[root@holly ~]# docker images

 

 

2.搜索docker上的redis镜像,选择下载的版本

[root@holly ~]# docker search redis

 

3.拉取redis镜像

[root@holly ~]# docker pull redis

 

4.如果觉的不合适,可以通过以下命令删除镜像

[root@holly ~]# docker rmi 镜像ID或镜像名称

 

5.查看镜像

[root@holly ~]# docker images

 

相关文章

Docker是什么Docker是 Docker.Inc 公司开源的一个基于 LXC技...
本文为原创,原始地址为:http://www.cnblogs.com/fengzheng...
镜像操作列出镜像:$ sudo docker imagesREPOSITORY TAG IMA...
本文原创,原文地址为:http://www.cnblogs.com/fengzheng/p...
在 Docker 中,如果你修改了一个容器的内容并希望将这些更改...
在Docker中,--privileged 参数给予容器内的进程几乎相同的权...