https://github.com/widuu/chinese_docker
1 docker ps / docker ps -a:列出在运行的docker容器环境,查看本机已有的容器
查看本机已有的镜像
3 docker save 9610cfc68e8d > /home/myubuntu-save-1204.tar
4 docker load < /home/myubuntu-save-1204.tar</span>
加载镜像
5 pull命令
http://www.docker.org.cn/book/docker/docker-download-image-7.html
6 如何删除image(镜像)
http://yaxin-cn.github.io/Docker/how-to-delete-a-docker-image.html
7 docker镜像使用
http://www.runoob.com/docker/docker-image-usage.html
8 镜像打包
http://wiselyman.iteye.com/blog/2153202
9 Docker run 命令参数及使用
https://www.jianshu.com/p/ea4a00c6c21c
10 Centos 7 如何卸载docker
https://blog.csdn.net/liujingqiu/article/details/74783780
11 在 CentOS 上安装与启动 Docker
https://talk.ninghao.net/t/docker-zai-centos-shang-an-zhuang-yu-qi-dong-docker/589
12 Error starting daemon: SELinux is not supported with the overlay2 graph driver on this kernel. Either boot into a newer kernel or disable selinux in docker (--selinux-enabled=false)
https://blog.csdn.net/lyqhf153/article/details/79585976
13 解决docker 下来镜像出现 error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net的问题
https://blog.csdn.net/fangoooooooooooo/article/details/78120327
14 shim error: docker-runc not installed on system.
https://stackoverflow.com/questions/42754779/docker-runc-not-installed-on-system
15 Job for docker.service failed because the control process exited with error code.
centos 7:
yum remove docker-*
rm -rf /etc/docker
rm -rf /usr/bin/docker-*
yum install docker-io -y
systemctl start docker
systemctl enable docker
16 http://www.cnblogs.com/wuvkcyan/p/8694391.html