解决:在制作Docker镜像时 REPOSITORY TAG 为 <none> <none>
问题复现(原图):[root@GitLab lnmp]# docker build -t lnmp .#执行此命令通过dockerfile构建镜像[root@GitLab lnmp]# docker imagesREPOSITORYTAGIMAGE IDCREATEDSIZE<none>
·
问题复现(原图):
[root@GitLab lnmp]# docker build -t lnmp . #执行此命令通过dockerfile构建镜像
[root@GitLab lnmp]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 6015ffec3ed9 3 minutes ago 444 MB
就出现 <none> <none> 难道我构建的镜像就不配有名字跟标签吗。
解决:
[root@GitLab lnmp]# docker tag 6015ffec3ed9 lnmp:v1.0 #手动通过image id 进行打标签
[root@GitLab lnmp]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
lnmp v1.0 6015ffec3ed9 5 minutes ago 444 MB
更多推荐
已为社区贡献4条内容
所有评论(0)