如何 运行 带有 <none> 标签的 docker 图像

How to run the docker image with <none> tag

我有一张带有 <none> 标签的 docker 图片。

我想 运行 带有 TAG <none> 的 hello-world 图像。我该怎么做?

您可以使用图像的 ID 运行 来自特定图像的容器,例如:

docker run -it efb6339f1b3e /bin/bash

如果你想给你的图像一个标签,你可以通过在 docker build 命令中使用 -t 选项来实现,例如:

docker build -t codinghaus/hello-world:1.0.0
docker tag <image-name> <image-name>[:tag]

示例:

docker tag hello_world hello_world[:2]

为了 运行 悬挂图像,您首先需要标记该图像。您可以使用图像 ID 来执行此操作。

例如:

docker tag [IMAGE_ID] [REPOSITORY]:[TAG]

现在您可以 运行 使用您刚刚定义的标签的图像。