溫馨提示×

溫馨提示×

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

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

CentOS 6.5如何制作ubuntu 12.04的docker鏡像

發(fā)布時間:2021-11-15 15:58:28 來源:億速云 閱讀:270 作者:小新 欄目:云計算

小編給大家分享一下CentOS 6.5如何制作ubuntu 12.04的docker鏡像,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

安裝docker請看這里:http://my.oschina.net/feedao/blog/222306
 

前面的文章http://my.oschina.net/feedao/blog/222699,我們創(chuàng)建了centos鏡像,這次我們要在

CentOS上制作ubuntu鏡像

方法如下:

root:

yum -y install debootstrap

cd /home/admin/

第一次執(zhí)行:

debootstrap --arch amd64 precise ubuntu-precise http://mirrors.163.com/ubuntu/

報錯:no such script /usr/share/debootstrap/scripts/precise
解決辦法:
ln -s /usr/share/debootstrap/scripts/gutsy /usr/share/debootstrap/scripts/precise

再次執(zhí)行:

debootstrap --arch amd64 precise ubuntu-precise http://mirrors.163.com/ubuntu/

修改權限:

chown -R admin.admin ubuntu-precise

切換成admin用戶:

su admin

[admin@localhost ~]$ cd ubuntu-precise/

制作ubuntu鏡像

[admin@localhost ubuntu-precise]$ tar -c .|docker import - ubuntu1204-base
43ad1b1116dd81b704fddcb803cf5267e6f66f2dd7751b5d2248495f97443705

查看鏡像:

[admin@localhost ubuntu-precise]$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED              VIRTUAL SIZE
ubuntu1204-base     latest              43ad1b1116dd        About a minute ago   172.7 MB
centos63-bash       latest              d2ecedd2b5ed        About an hour ago    306.7 MB

創(chuàng)建ubuntu容器:

[admin@localhost ubuntu-precise]$ docker run -t -i ubuntu1204-base /bin/bash
root@8053e2ca797b:/# pwd
/
root@8053e2ca797b:/# exit
exit

查看當前容器:

[admin@localhost ubuntu-precise]$ docker ps -a
CONTAINER ID        IMAGE                    COMMAND             CREATED             STATUS                         PORTS               NAMES
8053e2ca797b        ubuntu1204-base:latest   /bin/bash           31 seconds ago      Exited (0) 2 seconds ago                           thirsty_thompson    
14c9afaf2f06        centos63-bash:latest     /bin/bash           About an hour ago   Exited (0) About an hour ago                       insane_lalande     

重新啟動和進入ubuntu容器:

[admin@localhost ubuntu-precise]$ docker start 8053e2ca797b
8053e2ca797b
[admin@localhost ubuntu-precise]$ docker attach 8053e2ca797b
root@8053e2ca797b:/# ls
bin   dev  home  lib64 mnt  proc  run selinux  sys  usr
boot  etc  lib media opt  root  sbin  srv  tmp  var

在docker里面運行的ubuntu基礎鏡像就制作成功了。

看完了這篇文章,相信你對“CentOS 6.5如何制作ubuntu 12.04的docker鏡像”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

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

AI