Skip to main content

Questions tagged [registry]

The tag has no usage guidance.

0 votes
1 answer
15 views

How to create a private registry in Kubenetes?

I am trying to create a private docker registry in Kubernetes that can be used by Kubernetes to pull images from. Although I have tried many references but none work, so currently I am referring to ...
Vinay Sheel Sagar's user avatar
0 votes
1 answer
86 views

oras: server gave HTTP response to HTTPS client

I use the oras cli to upload oci artifacts. I get: ❯ oras push 127.0.0.1:5000/foo/test:is --artifact-type application/vnd.foo content Error: Head "https://127.0.0.1:5000/v2/foo/test/...
guettli's user avatar
  • 101
4 votes
1 answer
1k views

How to configure registries.yaml to point to several Harbor proxy cache registry?

I have configured a Harbor (with SSL and FQDN: harbor.example.com) as a proxy cache for several docker registries (docker.io, quay.io and k8s.gcr.io). I can pull any images without any problem from ...
k.Cyborg's user avatar
  • 175
2 votes
2 answers
2k views

Why am I unable to push docker image in gce (gcr.io)?

I created a new VM instance on my GCE compute engine (I have Owner permissions). On that instance, I installed git, docker, and gcloud - everything is done under sudo su. I was hoping I can use that ...
orberkov's user avatar
  • 195
1 vote
1 answer
241 views

Set container registry auth key via command line/env variable

I'm trying to set up Jenkins CI pipeline which will be used to build docker images. I have my auth key stored in Jenkins credentials and I want it to be loaded on start in placed in some environment ...
Morishiri's user avatar
  • 211
3 votes
1 answer
60 views

trigger command on registry update

I'm fairly new to CI/CD so this is probably a noob question. Anyway, here's my current setup: * Bitbucket repo * Registry service on AWS (ECS Registry) * Pipeline on Bitbucket that builds a docker ...
Simon Ertl's user avatar
5 votes
2 answers
2k views

Coupling docker registry and source control

What are the best practices (if any) for coupling a docker image registry with a SCM service (such as bitbucket)? I know a docker registry can live in artifactory, but how can I assure that the two ...
scott's user avatar
  • 466
2 votes
1 answer
3k views

Private docker registry that attempts a pull-through on images not found locally

I have a docker registry image running on a local network with the command docker run -d -p 5000:5000 --restart=unless-stopped --name registry -v /mnt/part_sdb/registry:/var/lib/registry registry:2 ...
lurscher's user avatar
  • 121
3 votes
1 answer
3k views

Docker Security Scanning: How to integrate Clair with a docker private registry?

According to the following documentation it should be possible to integrate clair with a docker private registry. How to do that? Registry Integration Clair can be integrated directly into a ...
030's user avatar
  • 13.2k