pull access denied repository does not exist or may require docker login

前端 未结 16 2252
悲哀的现实
悲哀的现实 2021-02-02 05:18

I am using Laravel 4.2 with docker. I setup it on local. It worked without any problem but when I am trying to setup online using same procedure then I am getting error

16条回答
  •  渐次进展
    2021-02-02 05:46

    I had the same error message but for a totally different reason.

    Being new to docker, I issued

    docker run -it

    where was the id of my newly created container.

    But, the run command wants the id of an image, not a container.

    To start a container, docker wants

    docker start -i

提交回复
热议问题