解决:在制作Docker镜像时 REPOSITORY TAG 为 <none> <none>
程序员文章站
2022-03-07 20:29:25
...
问题复现(原图):
[[email protected] lnmp]# docker build -t lnmp . #执行此命令通过dockerfile构建镜像
[[email protected] lnmp]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 6015ffec3ed9 3 minutes ago 444 MB
就出现 <none> <none> 难道我构建的镜像就不配有名字跟标签吗。
解决:
[[email protected] lnmp]# docker tag 6015ffec3ed9 lnmp:v1.0 #手动通过image id 进行打标签
[[email protected] lnmp]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
lnmp v1.0 6015ffec3ed9 5 minutes ago 444 MB
上一篇: Kafka流式处理
下一篇: CSS3的filter属性详细介绍