Docker how to pull specific Debian version - docker

I am not sure how to pull a specific Debian version from this official page to run/create a container.
How do I pull stretch-slim and run locally?
docker pull stretch-slim
Using default tag: latest
Error response from daemon: pull access denied for stretch-slim, repository does not exist or may require 'docker login': denied: requested access to the resource is denied

Related

error response from daemon: pull access denied for image, repository does not exist or may require 'docker login':

i have logged in and am using m1 mac.
error message below:Error response from daemon: pull access denied for mysqlmbtamasterimg, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
would appreciate any insights
I think you may be trying to build the image.
If so, try:
docker build --tag=mysqlmbtamasterimg --file=./Dockerfile .
Don't omit that final space then period at the end of the command.

K8S on Docker Desktop cannot pull private repo - pull access denied

I have logged in to the Docker hub using the CLI command: docker login. Entered username and password and I can pull and push images to Docker hub.
However, my K8S can't. I am trying to apply a deployment that should pull those images into its pods but I got the following error when running kubectl describe pod POD_NAME:
Warning Failed 9s kubelet Failed to pull image "myprivate/repo:tag": rpc error: code = Unknown desc = Error response from daemon: pull access denied for myprivate/repo, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
How to make the docker run in the pods to also be logged to the docker hub as well as doing it from my terminal?
Create "image pull secret" and define on your deployment. Here is how you can do https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/

Error response from daemon: pull access denied, repository does not exist or may require ‘docker login

I have made a repository private in Dockerhub.
My repository name is 78124/webapp whch has an image with v1 tag
I have Docker Desktop 2.3.0.2 installed on Windows 10 machine
I do docker login and supply my dockerhub account credentials, I am able to login.
However when I try to pull my private dockerhub repository image with v1 tag using:
docker pull 78124/webapp:v1
I get following error:
Error response from daemon: pull access denied for 78124/webapp, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
I am unable to pull my own private repository.
Thanks.

How to pull from docker hub - pull access denied repository does not exist or may require 'docker login'

I have pulled images from Docker before - some time ago - but now it seems things have changed.
Take for example https://hub.docker.com/r/datagrip. Documentation states installation as follows
docker pull sath89/oracle-xe-11g
This no longer works with current Docker hub. I can try latest
[myuser:~] $ docker pull sath89/oracle-xe-11g
Using default tag: latest
Error response from daemon: pull access denied for sath89/oracle-xe-11g, repository does not exist or may require 'docker login'
Or tag 11.2
[myuser:~] 1 $ docker pull sath89/oracle-xe-11g:11.2
Error response from daemon: pull access denied for sath89/oracle-xe-11g, repository does not exist or may require 'docker login'
Of course I can try login - login succeeds but pulling images is still not working.
[myuser:~] 1 $ docker login
Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: mydockerhubuser
Password:
WARNING! Your password will be stored unencrypted in /home/myuser/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store
Login Succeeded
[myuser:~] $ docker pull sath89/oracle-xe-11g:11.2
Error response from daemon: pull access denied for sath89/oracle-xe-11g, repository does not exist or may require 'docker login'
[myuser:~] 1 $
What is the secret nowadays for pulling images from Docker hub? It used to be so easy. Too easy clearly.

How to docker pull an old version of Keycloak?

I would like to docker pull a specific version of Keycloak but I have get this error:
Error response from daemon: pull access denied for jboss/keycloak-3.4.3, repository does not exist or may require 'docker login'
when I try this command:
docker pull jboss/keycloak-3.4.3
How I can get a specific version of Keycloak with docker ?
Do I have to modify the dockerfile?
The proper version is 3.4.3.Final - see the tags.

Resources