Questions tagged [docker-registry]

Docker Registry is a service which you can push Docker images to for storage and sharing. It is also the tool's name.

Docker registry services are provided as hosted or self-hosted services by various vendors:

Self-hosted:

Hosted

All of them comply either to v1 or v2 of the Docker registry API specification.

Docker Registry tool is at https://github.com/docker/docker-registry.

1698 questions
0
votes
1 answer

Can't create docker registry proxy cache: permission denied

i'm going crazy... [root@kube-1 ~]# cat config.yml version: 0.1 log: fields: service: registry storage: cache: blobdescriptor: inmemory filesystem: rootdirectory: /var/lib/registry http: addr: :5000 tls: certificate:…
yee379
  • 6,498
  • 10
  • 56
  • 101
0
votes
3 answers

How to limit content selector by docker tag in Sonatype Nexus3?

How to only grant access to specific tags and specified namespaces in Sonatype Nexus3?
Theo
  • 2,262
  • 3
  • 23
  • 49
0
votes
1 answer

Harbor Registry: Failed to pull image in Kubernetes

I set up a Harbor registry which worked successfully for a couple of weeks now. For each deployment and namespace I a have a secret with the credentials from my ~/.docker/config.json file to get access to the registry. Since last weekend I was not…
Timo Antweiler
  • 171
  • 1
  • 2
  • 11
0
votes
1 answer

Using the Python Docker API to get an Image hash from an AWS ECR

I've been using the the Docker Python API and Boto3 to build images and push them to Amazon ECR. What I've having difficultly determining is how do I determine if an Image I build already exists in ECR? I can use the Boto3 libraries like so: import…
djsumdog
  • 2,560
  • 1
  • 29
  • 55
0
votes
0 answers

Dockerfile private parent image specification in FROM

Is there a way to specify a private docker image? I can't seem to find any reference for it. Dockerfile looking something like: FROM myprivate_registry/myprivate_image If not, is the only way to do this by caching the parent image locally first,…
sargeMonkey
  • 606
  • 1
  • 7
  • 23
0
votes
1 answer

Can we create new docker repository in private Docker registery from Jenkinsfile?

As I am very new to docker, I am not sure if I have asked right question here. I just know few basics of Docker. We have on premise local private docker registry where we are creating repositories and uploading images there. We want to automate the…
0
votes
1 answer

Cannot get local Kubernetes (minikube) to pull from local Docker registry

I'm feeling pretty stupid here. I want K8s to pull Docker images from a local registry to ensure my development cycle is as fast as possible. I have set up the local registry per the instructions and am using an insecure registry. I have pushed…
me--
  • 1,978
  • 1
  • 22
  • 42
0
votes
2 answers

docker push into private Docker registry inside Kubernetes cluster fails with: 413 Request Entity Too Large

I have deployed a private Docker registry (image registry:2) in a Kubernetes cluster and exposed it via an Ingress. I am using the nginxinc/kubernetes-ingress (not: kubernetes/ingress-nginx) NGINX ingress controller. curl…
rookie099
  • 2,201
  • 2
  • 26
  • 52
0
votes
1 answer

Amazon ECR registry as Private registry

Cant I use Amazon ECR registry the same was as I am creating private registry? Whitelist the private registry by adding to daemon.json file and restart docker service docker push / docker pull…
stackjohnny
  • 645
  • 3
  • 7
  • 22
0
votes
1 answer

Making an image public in private repository

We have a self hosted docker repository and want the ability to let our users on the network pull images in the repo without logging in. To push an image we still need them to login. Pull should be open though. Like how docker hub works. You need to…
singhspk
  • 2,389
  • 3
  • 23
  • 28
0
votes
1 answer

Google Cloud Container Registry List images in subdirectory with gcloud command

How can I get a list of images in a "subdirectories" in a Google Cloud Container Registry? I have those images on…
0
votes
2 answers

how to create a Docker local private repository

I created a local docker repository in my server. When I try to push the image into it, there is an error. I need an HTTPS connection. How do I get an HTTPS for my own docker registry? os: ubuntu 16.x Docker version: 18.06.1-ce, build e68fc7a…
0
votes
1 answer

Drone.io Docker Plugin Daemon Configuration

How does one add a daemon.json (docker daemon configuration file) to the drone.io instance, so the image tag on pipeline steps can be configured to be used with private registries and client certificates?
Techradar
  • 3,506
  • 3
  • 18
  • 28
0
votes
0 answers

Jenkins ansible-playbook with tag docker_login error

I try to create docker image and put it into docker registry. I have docker on server and running Jenkins image. (So Jenkins is a docker container) Inside Jenkins I have job that should build image out of my code and put it in docker registry. so…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
0
votes
1 answer

Gitlab Registry Docker push fails with EOF

So my problem is when ever i try to push a docker image to my private registry hosted/run on gitlab the push will fail with the message EOF. Besides connection through an reverse proxy a have a standard gitlab instance in Version 11.4.7 on Ubuntu…
ljbergmann
  • 166
  • 1
  • 3
  • 7
1 2 3
99
100