Where can I find the list of GCR public images? In case of docker images, we can list it in hub.docker.com. But I couldn't find anything like that for GCR.
As stated in this documentation Artifact Registry gcr.io repositories. gcr.io repositories let Container Registry users maintain their existing Google Cloud infrastructure by storing container images in Artifact Registry and supporting requests to the same gcr.io URLs used by Container Registry.
Artifact Registry has its own IAM permissions to access your repositories. Artifact Registry uses new hosts under pkg.dev rather than gcr.io. Container Registry is only multi regional but Artifact Registry supports multi regional or regional repositories. Artifact Registry has its own pricing. Users are charged for storage and network egress.
This image say, gcr.io/distroless/base by default has "Config.User: 0" and "Config.WorkingDir: /" config in it and if you don't use USER for switching the user to nonroot user which is defined in it or it will start container with root user.
kaniko is meant to be run as an image: gcr.io/kaniko-project/executor. We do not recommend running the kaniko executor binary in another image, as it might not work.
Recently got a new Mac, and now I am struggling to push docker containers to GCR - receiving the error: unauthorized: You don't have the needed permissions to perform this operation, and you may h...
I want add shell or bash to my image to execute installation command. I have copied the /bin/bash on my VM on to my image on Dockerfile: COPY /bin/bash /bin/ But when I execute the docker comman...
The Google Container Registry documentation provides very good help on authenticating to it with Docker. Is there a way to do the same with Podman? The Google doc mentions Access Token as a method....