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

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

    Docker might have lost the authentication data. So you'll have to reauthenticate with your registry provider. With AWS for example:

    aws ecr get-login --region us-west-2 --no-include-email
    

    And then copy and paste that resulting "docker login..." to authenticated docker.

    Source: Amazon ECR Registeries

提交回复
热议问题