docker image REPOSITORY 為 TAG 為none的解決方法

theKingOfNight發表於2019-01-14
┌─[thekingofnight@parrot]─[~]
└──╼ $docker image ls
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
<none>              <none>              6ba6db0eca40        2 months ago        334MB

解決方法

┌─[✗]─[thekingofnight@parrot]─[~]
└──╼ $docker tag  6ba6db0eca40 test
└──╼ $docker image ls
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
test                latest              6ba6db0eca40        2 months ago        334MB

就可以進行其他的操作了

參考:https://blog.csdn.net/chen20111/article/details/78211977

相關文章