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

前端 未结 16 1931
悲哀的现实
悲哀的现实 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:44

    I had the same issue when working with docker-composer. In my case it was an Amazon AWS ECR private registry. It seems to be a bug in docker-compose

    https://github.com/docker/compose/issues/1622#issuecomment-162988389

    After adding the full path "myrepo/myimage" to docker compose yaml

    image: xxxxxxxxx.dkr.ecr.us-east-1.amazonaws.com/myrepo:myimage

    it was all fine.

提交回复
热议问题