I have problem with kubernetes (minikube) and pull images from local image repository on docker. Docker repository was created:
docker run --entrypoint htpas
When you run Kubernetes in Docker for Desktop your applications will share the same image registry across Docker and Kubernetes. List od all images:
docker images --all
Choose of them and run it with changed atribute --image-pull-policy=Never. For example:
kubectl run ContainerName --image=myimage/server --port=8080 --image-pull-policy=Never
By default, the kubelet will try to pull each image from the specified registry. However, if the imagePullPolicy property of the container is set to IfNotPresent or Never, then a local image is used (preferentially or exclusively, respectively). Link
It's mean, that Kubernetes pull image from local registry, not remote cloud.