docker: “build” requires 1 argument. See 'docker build --help'

前端 未结 14 2011
太阳男子
太阳男子 2020-11-28 02:21

Trying to follow the instructions for building a docker image from the docker website.

https://docs.docker.com/examples/running_redis_service/

this is the er

14条回答
  •  执念已碎
    2020-11-28 02:42

    Just provide dot (.) at the end of command including one space.

    example:

    command: docker build -t "blink:v1" .

    Here you can see "blink:v1" then a space then dot(.)

    Thats it.

提交回复
热议问题