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

Fine grained permissions for docker registry

I want to setup a private docker registry and need to be able to specify fine grained permissions on repository level e.g. I have repositories foo bar baz Developer A can see and pull from all three repositories but cannot push to any of them.…
Semaphor
  • 57
  • 2
  • 3
0
votes
1 answer

Problem with pulling docker images from gcr in kubernetes plugin / jenkins

I have a gke cluster with a running jenkins master. I am trying to start a build. I am using a pipeline with a slave configured by the kubernetes plugin (pod Templates). I have a custom image for my jenkins slave published in gcr (private access). I…
Stephan
  • 107
  • 2
  • 8
0
votes
1 answer

Docker can't see some files?

I want to create a docker registry on my server using this docker-compose.yaml file : version: '3' services: registry: restart: always image: registry:2 ports: - 5000:5000 volumes: -…
0
votes
1 answer

Concourse unauthorized error pushing to Artifactory using docker-image-resource

I'm trying to use Concourse to grab a dockerfile defintion from a git repository, do some work, build the docker image, and push the new image to Artifactory. See below for the pipeline definition. At this time I have all stages up to the…
theoneandonly2
  • 721
  • 1
  • 9
  • 21
0
votes
2 answers

Swarm stack is deployed before the new images are pushed

I use CircleCI and the pipeline is as follows: build test build app & nginx Docker images and push them to a GitLab registry deploy Docker stack to the development server (currently the Swarm manager) I just pushed my develop branch to my…
AymDev
  • 6,626
  • 4
  • 29
  • 52
0
votes
1 answer

permission denied on push to local docker registry on windows10

I am Using Windows 10 and here is my daemon conifiguration: { "registry-mirrors": [], "insecure-registries": [ "blah.hub:5000" ], "debug": true, "experimental": true, "allow-nondistributable-artifacts": [ "blah.hub:5000" …
Mehdi
  • 5,435
  • 6
  • 37
  • 57
0
votes
1 answer

How to implement container image copy from one project's GCR to another project's GCR in a node js app?

I have few images in the GCR of say Project A and want to copy these images to the GCR of Project B using a user account say xyz@gmail.com Is this possible? I also have node js application which uses oauth to authenticate xyz@gmail.com. Earlier I…
amv
  • 81
  • 8
0
votes
2 answers

Access denied when pushing docker image to gitlab's (on prem) integrated docker registry

When pushing a docker image with a modified tag (to contain registry) to the gitlab integrated registry i get an access denied.
arnonuem
  • 1,317
  • 6
  • 19
0
votes
2 answers

How do I pass a Docker image tag to Spinnaker webhook to trigger a pipeline with a *Run Job* stage

I have a Spinnaker Pipeline with a single stage on it of type Run Job (Runs a container). This configuration has the name of the image to by ran, but the tag specifically says it will be resolved at runtime. I created a Docker Registry trigger that…
0
votes
1 answer

On Docker for Windows, how do you push to a registry being port forwarded to localhost on the host machine?

I'm just going to put this here, because it was very difficult to find information on this topic and I ended up solving it myself. Setup Bastion host in aws with a public ip address Registry (image registry:2) on a private subnet behind bastion…
Josh
  • 12,602
  • 2
  • 41
  • 47
0
votes
1 answer

Docker Registry loosing Images data on restart

Docker-registry image is started in local machine. Images that are built are able to be pushed to docker-registry. However, when we do the restart of the registry, the pushed images are lost and not retained. Started the container with --always…
0
votes
0 answers

How to maintain certain number of docker images of same repository?

I have set up private docker repository on my local centos machine and its working fine. I have one project, which currently in build stage so many docker images with unique versions are getting created. I want to keep the latest 3 docker images of…
Devendra
  • 185
  • 14
0
votes
0 answers

Docker compose: Traefik and Docker registry

My PC is a Windows 10 PRO with Docker Desktop CE Version 2.0.0.3 (31259) (Engine 18.09.2). I'm building a docker-compose.yml file which runs Traefik, Portainer, GitLab, Jenkins and Registry containers. Traefik is configured with SSL (self-signed…
Miguel
  • 536
  • 6
  • 20
0
votes
1 answer

Configure docker registry notifications

I setup a docker registry using the official helm chart on my k8s cluster. I tried configuring notifications for my registry as per the docs, as follows: apiVersion: v1 data: config.yml: |- health: storagedriver: enabled: true …
Badri
  • 2,212
  • 3
  • 25
  • 26
0
votes
1 answer

Error pushing images to docker registry inside kubernetes and ingress

I'm working on docker for desktop kubernertes installation and i want to deploy a docker registry behind ingress. I already deployed a registry and if I access to the catalog api using ingress it works. But when i try to do a push i have this…
Luca
  • 321
  • 1
  • 3
  • 16