Questions tagged [registry]

11 questions
5
votes
2 answers

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 are as tightly coupled as possible? For example I…
scott
  • 466
  • 4
  • 11
4
votes
1 answer

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 any PC/VM which can access the Harbor netowrk,…
k.Cyborg
  • 175
  • 1
  • 7
3
votes
1 answer

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 image on master branch update and pushes it to…
Simon Ertl
  • 33
  • 2
3
votes
1 answer

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 container registry such that the registry is…
030
  • 13,383
  • 17
  • 76
  • 178
2
votes
2 answers

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 VM instance to deploy images to GCR, but whatever…
orberkov
  • 195
  • 7
2
votes
1 answer

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 but enabling the caching of images stored in…
lurscher
  • 121
  • 1
  • 4
1
vote
1 answer

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 variable (already done). Is it possible that…
Morishiri
  • 211
  • 1
  • 2
  • 11
0
votes
0 answers

How to push and deploy to Microk8s built-in registry

I am studying how to create a Proxmox-Microk8s workflow. I can deploy basic apps with my yaml, like Wekan or Wordpress. I cannot deploy a custom image. It's the most basic npm create vite@latest app with no custom code at all. I can build, tag,…
0
votes
1 answer

How do I know which tag "docker pull python" effectively pulls?

Is there a way to query or find out which tag is effectively pulled with docker pull python. I assume that docker pull python is the same as docker pull python:latest, but still then (at the time of asking this question), there is an ambiguity if…
0
votes
1 answer

How to create a private registry in Kubernetes?

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 this. Basically: Create a separate…
-1
votes
1 answer

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/manifests/sha256:...": http: server gave HTTP…
guettli
  • 99
  • 2