docker 提交镜像
Posted 沙中世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker 提交镜像相关的知识,希望对你有一定的参考价值。
1、删除本地镜像
sudo docker rmi luckypt/myalice
2、提交镜像到docker hub
step1——找到本地镜像的ID:docker images
step2——登陆Hub:docker login --username=username --password=password --email=email
step3——tag:docker tag <imageID> <namespace>/<image name>:<version tag eg latest>
step4——push镜像:docker push <namespace>/<image name>
具体步骤:
[email protected]:~/file/docker$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
all_right latest f23b80fc240b 2 weeks ago 3.51 GB
========================================================================
[email protected]:~/file/docker$ sudo docker login --username=luckypt --password=********* [email protected]
Flag --email has been deprecated, will be removed in 1.14.
========================================================================
sudo docker tag f23b80fc240b luckypt/myalice:latest
========================================================================
sudo docker push luckypt/myalice:latest
3、 搜索镜像
sudo docker search ubuntu
4、拉取镜像
sudo docker pull ubuntu
以上是关于docker 提交镜像的主要内容,如果未能解决你的问题,请参考以下文章