构建 MongoDB Docker 图像

Building the MongoDB Docker image

按照此 docker example 构建和 运行 一个 mongo 数据库映像。 但是无法构建图像。

sudo docker build --tag himanshuy/repo

Usage: docker build [OPTIONS] PATH | URL | -

Build a new image from the source code at PATH

  --force-rm=false     Always remove intermediate containers, even after unsuccessful builds
  --no-cache=false     Do not use cache when building the image
  --pull=false         Always attempt to pull a newer version of the image
  -q, --quiet=false    Suppress the verbose output generated by the containers
  --rm=true            Remove intermediate containers after a successful build
  -t, --tag=""         Repository name (and optionally a tag) to

尝试指定您的 Dockerfile 的路径(如果您已经在该文件夹中,请使用 .),如果您使用 [=13=,则使用 =--tag 或不使用它];所以: sudo docker build -t himanshuy/repo .sudo docker build --tag=himanshuy/repo .