可以使用命令:
docker tag [image id] [name]:[版本]
例如:
docker tag b03b74b01d97 docker-redis:0.0.1
补充知识:docker的save和load
我就废话不多说了,大家还是直接看代码吧~
实战
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91 |
[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的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持快网idc。
原文链接:https://blog.csdn.net/chen20111/article/details/78211977
相关文章
猜你喜欢
- 服务器租用价格怎么计算?服务器租用多少钱一年? 2025-05-27
- 云服务器的“弹性”体现在哪些方面? 2025-05-27
- 刀片服务器是什么 刀片服务器的主要特点 2025-05-27
- 利用FTP和计划任务自动备份网站数据和数据库 2025-05-27
- 服务器技术之硬件冗余技术 2025-05-27
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
2025-05-27 99
-
在Windows的Apache服务器上配置对PHP和CGI的支持
2025-05-27 80 -
2025-05-27 70
-
Docker之修改/etc/default/docker 里的DOCKER_OPTS参数不生效问题
2025-05-27 64 -
2025-05-26 13
热门评论