docker build --tag =未正确设置标签,存储库

时间:2019-03-31 13:41:40

标签: docker

我正在关注官方docker get started guide。我想设置一个mongodb实例,而不是使用python图像。我确定了一个标签,然后找到了相关的Dockerfile。我将docker文件放在一个否则为空的文件夹中(内容与链接中的内容相同)。

我先运行docker build --tag=mongoplayground:1.0.0 .,然后再运行docker image ls,但是我得到的输出是这样的:

REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
<none>              <none>              838852e4e564        32 minutes ago      409MB
ubuntu              xenial              9361ce633ff1        2 weeks ago         118MB

我希望存储库名称为mognoplayground,标签为1.0.0

我在做什么错了?

2 个答案:

答案 0 :(得分:1)

应该是:

docker build --tag mongoplayground:1.0.0 .

或:

docker build -t mongoplayground:1.0.0 .

答案 1 :(得分:0)

尝试

  

docker build -t mongoplayground:1.0.0。