Questions tagged [quay.io]

Cloud service for Docker container storage, security scanning and distribution.

30 questions
5
votes
2 answers

pyup.io-43366 (CVE-2021-43818) Vulnerability in base image for docker

I have a docker base image when uploaded to quay image repository give the vulnerability pyup.io-43366 (CVE-2021-43818). The base image is FROM quay/registry.redhat.io/rhel7:latest MAINTAINER Me LABEL description="Application runtime image" \ …
5
votes
1 answer

Error response from daemon: Get https://quay.io/v2/: unauthorized: access to the requested resource is not authorized

I am trying to pull images from quay.io using my credentials. I have Windows 10, Docker Desktop 2.2.0.5 installed on my machine. I open my cmd and type: docker login quay.io I supply my username and password and then I get below error: Error…
Vikas Gupta
  • 51
  • 2
  • 4
4
votes
2 answers

Minikube external registry Failed to pull image redis-ha

Working on getting development environment setup in Minikube and ran across an issue pulling images from the https://quay.io/v2/ registry. I have ran the command: eval $(minikube docker-env) . Which allows me to build my local Dockerfile in…
afreeland
  • 3,889
  • 3
  • 31
  • 42
2
votes
2 answers

Default command for a docker image

How can I know the default command a container runs using a base image without actually creating a new container from the image? is some concept I am missing here? I am writing a dockerfile using a base image but I dont know what to put in CMD…
user2636464
  • 685
  • 7
  • 17
2
votes
3 answers

OpenShift: How to update app based on ImageStream

I created a project on OpenShift 4.2 with an ImageStream that is pulling an Image from Quay.io: oc new-project xxx-imagestream oc import-image is:1.0 --from quay.io/xxx/myimage:latest --confirm --reference-policy local Now I create a new project…
Guildenstern70
  • 1,715
  • 18
  • 18
2
votes
1 answer

Build argument in quay.io

I have set up a private repo in quay.io Also, set up a build trigger which is working as expected. The only problem I'm facing is with the build argument. My Dockerfile requires a build argument and that's the reason why currently the build is…
Roshan007
  • 658
  • 2
  • 7
  • 15
1
vote
1 answer

How does docker / quays tag versioning work?

So I am building an image with a dockerfile locally, and then pushing the image to quay with a specific tag i.e. podman build -t quay.io/user/test:v1.0 pushman push quay.io/user/test:v1.0 I see the image in quay and can pull and run it…
1
vote
0 answers

Unauthorized error with oauth2-proxy´s allow-group flag

I am using oauth2 to handle the authentication/authorization via a company´s SSO provider of a web app running in k8. The authentication works like a charm, however, once enable authorization for a specific group ( here: "ADMIN"), I always get a 403…
Bennimi
  • 416
  • 5
  • 14
1
vote
0 answers

unable to authenticate quay regsitry with remote docker login in terminal

I installed red hat quay in a centos based vm. I installed certs (openssl/letsencrypt) also for quay subdomain. quay and other dependencies are running in a docker container inside the VM. After setting up QUAY and getting certs in quay…
Deepak
  • 1,503
  • 3
  • 22
  • 45
1
vote
1 answer

podman not running container in quay setup in centos9

I am setting up quay in a vm with centos distro. This is the guide I am following: quay deploy guide once I install Podman I am trying to run first container with below command: I set up this env variable: export QUAY=QUAY and made a dir of same…
Deepak
  • 1,503
  • 3
  • 22
  • 45
1
vote
1 answer

quay.io build frequently hits Docker Hub rate limit

I have a Dockerfile whose base is a public image on Docker Hub. In my quay.io triggered builds, I frequently encounter Docker Hub's rate limit error: Could not pull base image: API error (500): toomanyrequests: You have reached your pull rate limit.…
xuhdev
  • 8,018
  • 2
  • 41
  • 69
1
vote
1 answer

How to switch from docker.io to quay.io?

I need help how to switch from image registry server from docker.io to quay.io. My cases is I pull centos image from hub.docker.com and I want to push it to quay.io. I have login to my quay.io but when I try to push to quay like this shell that was…
1
vote
0 answers

Accessing local docker registry from Skopeo container

I have a local docker registry on my mac and I want to be able to perform this type of command: docker run quay.io/skopeo/stable inspect Tried to use docker run quay.io/skopeo/stable inspect docker-daemon: (docker-daemon will use the local…
1
vote
1 answer

Why am I getting this "unauthorized" error when trying to mirror OKD installation images from Quay.io?

I have been working on an installation of OKD on an air-gapped environment. The first major step has been mirroring the OKD images so that they can be moved over to the new environment and pulled locally. I've been following a combination of the…
Blake Simmons
  • 426
  • 1
  • 8
  • 23
1
vote
0 answers

Quay.io API image build

I am unable to build any image using quay REST API. The only error I can see is: Could not find or parse Dockerfile: First line in Dockerfile isn't FROM. The dockerfile builds fine using other methods , the issue is only when using quay rest…
Prakash
  • 461
  • 1
  • 5
  • 21
1
2