五月综合激情婷婷六月,日韩欧美国产一区不卡,他扒开我内裤强吻我下面视频 ,无套内射无矿码免费看黄,天天躁,日日躁,狠狠躁

新聞動態(tài)

解決docker加載新的鏡像后repository和tag名稱都為none的問題

發(fā)布日期:2022-01-04 13:54 | 文章來源:CSDN

可以使用命令:

docker tag [image id] [name]:[版本]

例如:

docker tag b03b74b01d97 docker-redis:0.0.1

補充知識:docker的save和load

我就廢話不多說了,大家還是直接看代碼吧~

實戰(zhàn)

[root@localhost ~]# docker images
REPOSITORY     TAG         IMAGE ID      CREATED       SIZE
clearlinux     latest       32685d114002    7 days ago     62.5MB
busybox       latest       6ad733544a63    7 days ago     1.13MB
alpine       latest       053cde6e8953    7 days ago     3.96MB
[root@localhost ~]# docker run -itd --name b1 busybox:latest
4bb440e12b85d888f1a8363fe7a3dda977db6d5ed30264f22a31233f61fbf391
[root@localhost ~]# docker ps -a
CONTAINER ID    IMAGE        COMMAND       CREATED       STATUS       PORTS        NAMES
4bb440e12b85    busybox:latest   "sh"        12 seconds ago   Up 11 seconds              b1
[root@localhost ~]# docker commit 4b box
sha256:32d6db8775382ca96a97109bc16bbdedb53b241b7ebeb29498ae7b3672f4f53d
[root@localhost ~]# docker images
REPOSITORY     TAG         IMAGE ID      CREATED       SIZE
box         latest       32d6db877538    6 seconds ago    1.13MB
clearlinux     latest       32685d114002    7 days ago     62.5MB
busybox       latest       6ad733544a63    7 days ago     1.13MB
alpine       latest       053cde6e8953    7 days ago     3.96MB
[root@localhost ~]# docker rmi box
Untagged: box:latest
Deleted: sha256:32d6db8775382ca96a97109bc16bbdedb53b241b7ebeb29498ae7b3672f4f53d
[root@localhost ~]# docker images
REPOSITORY     TAG         IMAGE ID      CREATED       SIZE
clearlinux     latest       32685d114002    7 days ago     62.5MB
busybox       latest       6ad733544a63    7 days ago     1.13MB
alpine       latest       053cde6e8953    7 days ago     3.96MB
[root@localhost ~]# docker ps -a
CONTAINER ID    IMAGE        COMMAND       CREATED       STATUS       PORTS        NAMES
4bb440e12b85    busybox:latest   "sh"        2 minutes ago    Up 2 minutes              b1
[root@localhost ~]# docker attach 32
Error: No such container: 32
[root@localhost ~]# docker attach 4b
/ # ls
bin  dev  etc  home proc root sys  tmp  usr  var
/ # mkdir test
/ # ls
bin  dev  etc  home proc root sys  test tmp  usr  var
/ # read escape sequence
[root@localhost ~]# docker commit 4b box
sha256:00b0b91713e6df2e4047ba0ba0eb14968caa6aaeb647f7069dfcb6b35ca4890a
[root@localhost ~]# docker images
REPOSITORY     TAG         IMAGE ID      CREATED       SIZE
box         latest       00b0b91713e6    5 seconds ago    1.13MB
clearlinux     latest       32685d114002    7 days ago     62.5MB
busybox       latest       6ad733544a63    7 days ago     1.13MB
alpine       latest       053cde6e8953    7 days ago     3.96MB
[root@localhost ~]# docker save 00 >box.tar
[root@localhost ~]# ll box.tar
-rw-r--r--. 1 root root 1352192 Nov 11 09:28 box.tar
[root@localhost ~]# docker images
REPOSITORY     TAG         IMAGE ID      CREATED       SIZE
box         latest       00b0b91713e6    3 minutes ago    1.13MB
clearlinux     latest       32685d114002    7 days ago     62.5MB
busybox       latest       6ad733544a63    7 days ago     1.13MB
alpine       latest       053cde6e8953    7 days ago     3.96MB
[root@localhost ~]# docker ps
CONTAINER ID    IMAGE        COMMAND       CREATED       STATUS       PORTS        NAMES
4bb440e12b85    busybox:latest   "sh"        7 minutes ago    Up 7 minutes              b1
[root@localhost ~]# docker rm -f 4b
4b
[root@localhost ~]# docker ps
CONTAINER ID    IMAGE        COMMAND       CREATED       STATUS       PORTS        NAMES
[root@localhost ~]# docker rmi 00
Untagged: box:latest
Deleted: sha256:00b0b91713e6df2e4047ba0ba0eb14968caa6aaeb647f7069dfcb6b35ca4890a
Deleted: sha256:0c496176e68f1db885dbb101c947e63c3733e611563336574144028325e408de
[root@localhost ~]# docker images
REPOSITORY     TAG         IMAGE ID      CREATED       SIZE
clearlinux     latest       32685d114002    7 days ago     62.5MB
busybox       latest       6ad733544a63    7 days ago     1.13MB
alpine       latest       053cde6e8953    7 days ago     3.96MB
[root@localhost ~]# docker load <box.tar
2c3500bcac65: Loading layer [==================================================>] 3.072kB/3.072kB
Loaded image ID: sha256:00b0b91713e6df2e4047ba0ba0eb14968caa6aaeb647f7069dfcb6b35ca4890a
[root@localhost ~]# docker load <box.tar
Loaded image ID: sha256:00b0b91713e6df2e4047ba0ba0eb14968caa6aaeb647f7069dfcb6b35ca4890a
[root@localhost ~]# docker images
REPOSITORY     TAG         IMAGE ID      CREATED       SIZE
<none>       <none>       00b0b91713e6    5 minutes ago    1.13MB
clearlinux     latest       32685d114002    7 days ago     62.5MB
busybox       latest       6ad733544a63    7 days ago     1.13MB
alpine       latest       053cde6e8953    7 days ago     3.96MB
[root@localhost ~]# docker run -itd --name new 00b
588024b91339f00fe4e3e1dc9e2a1cc8c4bcefd1fbb63eb9561620aef2fe2ad5
[root@localhost ~]# docker ps -a
CONTAINER ID    IMAGE        COMMAND       CREATED       STATUS       PORTS        NAMES
588024b91339    00b         "sh"        15 seconds ago   Up 14 seconds              new
[root@localhost ~]# docker attach 58
/ # ls
bin  dev  etc  home proc root sys  test tmp  usr  var
/ # read escape sequence

以上這篇解決docker加載新的鏡像后repository和tag名稱都為none的問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持本站。

版權(quán)聲明:本站文章來源標注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非maisonbaluchon.cn所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場,如有內(nèi)容涉嫌侵權(quán),請聯(lián)系alex-e#qq.com處理。

實時開通

自選配置、實時開通

免備案

全球線路精選!

全天候客戶服務(wù)

7x24全年不間斷在線

專屬顧問服務(wù)

1對1客戶咨詢顧問

在線
客服

在線客服:7*24小時在線

客服
熱線

400-630-3752
7*24小時客服服務(wù)熱線

關(guān)注
微信

關(guān)注官方微信
頂部