1)、把运行中的容器打包为一个镜像(或者保存修改之后的镜像)
docker commit -m "镜像信息" CONTAINER ID 仓库名(必须是自己的账号/springboot)
image.png
2)、把镜像上传仓库之前需要先使用ID和密码登录Docker 仓库
docker login
image.png
3)、 注意:第一次push镜像失败的原因:
①、原因1:命令内容无帐号信息
docker@default:/$ docker push zyj/springboot:latest
The push refers to a repository [docker.io/library/ubuntu]
d4bd1dfba68a: Preparing
7f7a065d245a: Preparing
f96e6b25195f: Preparing
c56153825175: Preparing
ae620432889d: Preparing
a2022691bf95: Waiting
denied: requested access to the resource is denied
②、原因2: 本地镜像名无帐号信息
image.png
4)、成功上传展示
image.png
5)、验证是否上传成功
docker inspect zhanglj1221/springboot
image.png
网友评论