一.安装docker
1.安装Centos7源
[root@centos ~]#wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
2.清除yum缓存
3.生成yum缓存
4.安装docker
[root@centos ~]# yum -y install docker
5.设置开机自启
二.镜像管理
1.查看镜像
[root@centos ~]# docker search nginx
2.下载镜像
[root@centos ~]# docker pull mariadb
3.查看镜像
[root@centos ~]# docker images
4.另存镜像备份
[root@centos ~]# docker save -o ./mariadb.tar docker.io/mariadb:latest
5.修改镜像名字
[root@centos ~]# docker tag docker.io/mariadb:latest mariadb1
6.删除镜像
[root@centos ~]# docker rmi docker.io/mariadb
7.导入镜像
[root@centos ~]# docker load < ./mariadb.tar
三.容器的管理
1.创建容器名为centos1
[root@centos ~]# docker create -it --name centos01 hub.c.163.com/public/centos:6.7-tools
2.查看所有容器
[root@centos ~]# docker ps -a
3.启动centos01容器
4.删除停止的容器
4.删除运行中的容器
5.登入容器
6.备份容器
7.导入备份的容器