溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Docker Base Image如何創(chuàng)建

發(fā)布時間:2022-05-26 16:18:47 來源:億速云 閱讀:237 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“Docker Base Image如何創(chuàng)建”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Docker Base Image如何創(chuàng)建”吧!

一. 環(huán)境

宿主機操作系統(tǒng): os x  ,需要安裝virtualbox  ;
容器環(huán)境:centos7

二. 用virtualbox 安裝系統(tǒng),這里以centos 7為例(centos-7-x86_64-minimal-1503-01.iso)

創(chuàng)建虛擬機,并安裝centos7,以下記錄了詳細(xì)安裝過程。

Docker Base Image如何創(chuàng)建

Docker Base Image如何創(chuàng)建

* 安裝過程簡單,我這里網(wǎng)速太慢了,就不上圖了,有需要的朋友留個郵箱,我發(fā)pdf。*

安裝完后,重啟后進(jìn)入系統(tǒng)。

三. 修改網(wǎng)絡(luò)配置

修改網(wǎng)絡(luò)配置 /etc/sysconfig/network-script/ifcfg-enp0s3。
刪除 uuid,hwaddr ;
修改onboot=no 為 onboot=yes , 然后保存 。

$ ifconfig 
cannot find a valid baseurl for repo: base/7/x86_6

重啟網(wǎng)絡(luò)接口:
[root@centos7 ~]#ifdown enps03
[root@centos7 ~]#ifup enps03

$ yum install ifconfig 
 提示:nothing to do
 通過” yum provides” 命令列出那個包提供ifconfig命令
$ yum provides ifconfig  
// 安裝
$ yum -y install net-tools

四. 安裝docker

安裝 epel (參考:http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/ )
[root@centos7 ~]# rpm -uvh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm

修改/etc/yum.repos.d/centos-base.repo 把enabled=0 改成enabled=1
vim /etc/yum.repos.d/centos-base.repo
[centosplus]
enabled=1

安裝 docker
[root@centos7 yum.repos.d]# yum install docker-io


啟動 docker 
[root@centos7 yum.repos.d]# service docker start

五. 創(chuàng)建基礎(chǔ)鏡像

替換變量
把 /etc/yum.repos.d/centos-base.repo 文件中
$releasever 替換成 7
$basearch 替換成 x86_64

快速替換方法:
vim /etc/yum.repos.d/centos-base.repo
:%s/$releasever/7/g
:%s/$basearch/x86_64/g

創(chuàng)建docker image 生成腳本
[root@centos7 yum.repos.d]# cd /root
[root@centos7 ~]# mkdir scripts
[root@centos7 ~]# cd scripts/
[root@centos7 scripts]# vim createimage.sh
然后把 https://github.com/docker/docker/blob/master/contrib/mkimage-yum.sh 文件中內(nèi)容粘貼進(jìn)去

[root@centos7 scripts]# chmod +x createimage.sh

創(chuàng)建image
[root@centos7 scripts]# ./createimage.sh centos7base

創(chuàng)建成功后查看,并把當(dāng)前運行的容器刪除掉
[root@centos7 tmp]# docker images
repository     tag         image id      created       virtual size
centos7base     7.1.1503      112ee00c2cbc    8 minutes ago    227.7 mb

[root@centos7 tmp]# docker ps -all
container id    image         command       created       status           ports        names
752b9d49a079    centos7base:7.1.1503  "echo success"   10 minutes ago   exited (0) 10 minutes ago            mad_saha

[root@centos7 tmp]# docker rm 752b9d49a079
752b9d49a079

[root@centos7 tmp]# docker ps -all
container id    image        command       created       status       ports        names

導(dǎo)出image
[root@centos7 tmp]# cd /tmp/
[root@centos7 tmp]# docker images
repository     tag         image id      created       virtual size
centos7base     7.1.1503      112ee00c2cbc    14 minutes ago   227.7 mb

[root@centos7 tmp]# docker save 112ee00c2cbc > /tmp/centos7base.tar

[root@centos7 tmp]# ls
centos7base.tar ks-script-l8tdo5 yum.log
[root@centos7 tmp]#

六. docker 常用命令

docker stop <container id> :用來停止運行中的容器,同時你還可以用
docker start <container id>:用來啟動一個已經(jīng)停止的容器。
docker restart <container id>:可以重啟一個運行中的容器。這就相當(dāng)于對一個容器先進(jìn)行stop再start。
docker attach <container id> :關(guān)聯(lián)到一個正在運行的容器

刪除鏡像: docker rmi <image id>
  docker rmi 2db1e85f26ba

刪除容器:docker rm <container id>
  docker rm c3bfb652a491

查看正在運行的容器
  docker ps -all

停止容器:
  exit

重新進(jìn)入窗口
  docker start <container id>
  docker attach <container id>

暫時退出容器
  ctrl + p 然后 ctrl + q
重新入進(jìn):
  docker attach <container id>

將容器保存成鏡像:
  docker commit <container id> <name>:<tag>

七. 導(dǎo)到本地鏡像庫

回去宿主機,把虛擬機中導(dǎo)出的image拷到本地
hr:~ hr$ mkdir -p docker/images
hr:~ hr$ cd docker/images/
hr:images hr$ scp root@192.168.1.4:/tmp/centos7base.tar .
hr:images hr$ ls -lah
total 469392
drwxr-xr-x 3 hr staff  102b 12 5 21:08 .
drwxr-xr-x 3 hr staff  102b 12 5 21:05 ..
-rw-r--r-- 1 hr staff  229m 12 5 21:08 centos7base.tar

啟動docker quick start terminal



加載image 包到docker image
hr:images hr$ docker load < /users/hr/docker/images/centos7base.tar

hr:images hr$ docker images
repository     tag         image id      created       virtual size
<none>       <none>       112ee00c2cbc    29 minutes ago   227.7 mb
hello-world     latest       975b84d108f1    7 weeks ago     960 b

tar 等于none的就是剛剛導(dǎo)入的,把tag改個名字:
hr:images hr$ docker tag 112ee00c2cbc centos7base:7.1
hr:images hr$ docker images
repository     tag         image id      created       virtual size
centos7base     7.1         112ee00c2cbc    33 minutes ago   227.7 mb
hello-world     latest       975b84d108f1    7 weeks ago     960 b


運行容器:
hr:images hr$ docker run -i -t 112ee00c2cbc /bin/bash
[root@e948acae7b42 /]# hostname
e948acae7b42

[root@e948acae7b42 /]# cat /etc/redhat-release 
centos linux release 7.1.1503 (core)

八. 發(fā)布鏡像到docker hub

前提是先注冊一個帳號:https://hub.docker.com/

 1. 登錄

       docker login —username=<用戶名> —email=<郵箱地址>

 2. 按docker repository 要求修改鏡像tag

    docker tag <image id>  用戶名/鏡像名/tag
    docker tag 112ee00c2cbc honor/centos7base:7.1

 3. 上傳

    docker push honor/centos7base

到此,相信大家對“Docker Base Image如何創(chuàng)建”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI