Home > Enterprise >  docker: Error response from daemon: pull access denied for rhel7/rhel
docker: Error response from daemon: pull access denied for rhel7/rhel

Time:12-23

My docker

enter image description here

I found this cheatsheet from internet: enter image description here

How to fix it?

CodePudding user response:

Well, this error means that the docker image you are trying to pull is private. Only logged user with permissions may pull the image. You may use the command docker login in order to login to docker hub, but if your user does not have the permissions, it will fail anyway.

CodePudding user response:

This document seems to be an internal document of Red Hat. REHL is not a community distribution and there's no image for it in docker hub. You need to use one of the CentOS images instead or try other GNU/Linux distros such as Ubuntu or Debian.

  • Related