搭建容器环境
容器安装步骤如下:
1、安装容器
[root@localhost Desktop]# yum install docker
2、启动容器:
[root@localhost Desktop]# systemctl start docker
3、下载镜像(此处使用centos做参考):
[root@localhost Desktop]# docker pull centos
下载成功后使用docker images 查看下载的镜像
制作定制镜像
制作步骤如下:
1、启动一个centos容器:
[root@localhost Desktop]# docker run -itd centos:latest /bin/bash
2、进入容器
[root@localhost Desktop]# docker exec -it 2ed260ff3e65 /bin/bash
3、在容器内创建一个标识
[root@2ed260ff3e65 /]# touch test1
4、将容器保存到本地
[root@localhost Desktop]# docker export 2ed260ff3e65 > centos.tar.gz
2ed260ff3e65:容器id这里也可以使用容器名称
centos8.0.tar.gz:保存到本地的tar包名称可以根据情况取。
5、将容器上传到image并启动查看
[root@localhost Desktop]# docker import centos.tar.gz centos:8.0
centos:8.0:这里是指在image中显示的名称,一般写的是“镜像本身名称:镜像版本”方式去操作。
[root@localhost Desktop]# docker run -it centos:8.0 /bin/bash
如下图可查看到之前创建的表示代表成功