欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

详解Docker 容器基础系统镜像打包

程序员文章站 2022-03-18 13:53:26
因为容器本身是共享宿主操作系统内核,所以容器基础系统镜像包本身就是一个标准的 linux rootfs + 用户自定义的工具。根据这个思路,我们就可以构建一个自己的容器基础...

因为容器本身是共享宿主操作系统内核,所以容器基础系统镜像包本身就是一个标准的 linux rootfs + 用户自定义的工具。根据这个思路,我们就可以构建一个自己的容器基础系统镜像。

构建标准的 linux rootfs 的方式有很多种方法,redhat、debian、suse等主流的发行版都有提供相应的工具支持。

大概的流程如下:

构建基础的 rootfs —> 配置基础系统参数 —> 部署用户自定义软件 —> 清理系统 —> 打包为容器镜像 —> 测试镜像 —> 发布仓库

以 ubuntu 16.04.01 lts 版为例,制作一个 ubuntu 16.04 lts 的 docker 基础系统镜像:

1、安装 debootstrap :

sudo apt install debootstrap

2、通过 debootstrap 构建 ubuntu 16.04 lts 的 rootfs :

1)、创建 rootfs 存放的位置,如我们把新的 rootfs 存放在 /opt/new_os:

 sudo mkdir -p /opt/new_os

2)、构建基础 ubuntu 16.04 lts 的 rootfs(debootstrap 工具的参数使用 --help 查看):

sudo debootstrap --verbose --arch=amd64 xenial /opt/new_os http://mirrors.aliyun.com/ubuntu

3)、配置基础系统参数:

a、切换到新 rootfs :

sudo chroot /opt/new_os /bin/bash

 b、安装基础包(请根据实际需求安装):

 apt -y update && apt -y upgrade && apt -y install vim locales

c、配置系统字符集(根据提示进行):

dpkg-reconfigure locales

d、配置时区:

cp /usr/share/zoneinfo/asia/shanghai /etc/localtime

 e、可选:配置第三方衍生系统版本信息(如:ubuntukylin)

    
            tee /etc/ubuntukylin-release <<-‘eof'
            distrib_id=ubuntu kylin
            distrib_release=16.04
            distrib_codename=xenial
            distrib_description="ubuntu kylin 16.04"
            eof

f、清理系统:

 rm -rf /tmp/* && apt clean

g、 退出当前 rootfs

 exit

4)、打包并创建 docker 镜像(前置条件:当前系统已经配置了 docker 运行时环境):

sudo tar -c /opt/new_os/ -c . | sudo docker import - new_os

 5)、测试

sudo docker run new_os cat /etc/lsb-release

3、发布到仓库(以发布到官方仓库为例,私有仓库请自行上传)

sudo docker login shibingli@yeah.net
……
sudo docker tag new_os shibingli/new_os
sudo docker push shibingli/new_os

4、完成。

5、补充,如果要把当前的系统环境打包为容器基础镜像,主要是 rootfs 的处理,可以参考以下命令:

tar --numeric-owner --exclude=/proc --exclude=/sys -cvf new_os.tar /
cat new_os.tar | docker import - new_os

sudo tar --numeric-owner --exclude=/proc --exclude=/sys -c / -c . | sudo docker import - new_os

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。