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

前端 未结 14 2110
太阳男子
太阳男子 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:25

    Use the following command

    docker build -t mytag .
    

    Note that mytag and dot has a space between them . This dot represents the present working directory .

提交回复
热议问题