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

Use Gitlab integrated Docker Registry in Gitlab Docker Version

Is it possible to run the Gitlab integrated Docker Registry on a Docker hosted Gitlab instance?
root404
  • 65
  • 1
  • 1
  • 6
0
votes
0 answers

Can docker use http request to pull images from private registry?

I want to capture http requests when I pull images from private registry. But it doesn't work. I use wireshark and only capture tcp requests. I use sudo docker run -d -v /opt/registry/data:/var/lib/registry -p 5000:5000 --name myregistry…
0
votes
0 answers

docker login to openshift internal docker registry - Gateway Timeout

Running the openshift cluster using minishift in ubuntu OS. minishift IP is "192.168.42.48". I am following the URL to access the internal docker registry. After the minishift has started successfully, logged in as administrator using "oc login -u…
intechops6
  • 1,007
  • 4
  • 22
  • 43
0
votes
1 answer

Jenkins withDockerRegistry for image out of stage failing

I have a problem when I build the image in one stage, and I try to push to registry in another stage: This code works ok: stage('Push Image to registry') { steps{ script{ withDockerRegistry(credentialsId: 'gcr:xxxx', url:…
ruben
  • 15
  • 1
  • 7
0
votes
2 answers

When I login to Docker Nexus 3 private registry, I get 404 error

I am working in a closed environment, and I need to login to a private Nexus3 registry. I have setup the daemon.json with the insecure-registries option. I can ping the server, telnet the port and curl the endpoint. I can login to Nexus3 UI with…
MTh
  • 13
  • 6
0
votes
1 answer

how to - helm install using private registry

I am installing consul from repo using command "helm install --generate-name stable/consul --version 3.9.2 -n dev-namespace" In my cluster there is no internet, how can I ask helm(helm v3) to use private registry to look for images instead of…
intechops6
  • 1,007
  • 4
  • 22
  • 43
0
votes
1 answer

kubctl not pulling images from public registry but docker pull works

In the fresh vmware PKS kubernetes cluster, the secret is created for private docker-registry and it works as expected. But the kubectl is not pulling the image from public registry "https://registry-1.docker.io/v2/". I am connected to corporate…
intechops6
  • 1,007
  • 4
  • 22
  • 43
0
votes
1 answer

connecting to an insecure local docker registry in uncontrolled CI environment

I'm building a microservice that performs operations on a docker registry. The microservice i'm building has a test which starts a docker-registry via the docker-registry image in Docker Hub, so the microservice can connect to it, set it up, work on…
nathan g
  • 858
  • 9
  • 17
0
votes
0 answers

How to get image upload date/time from Docker Registry

I need to get the image upload date from a Docker Registry I currently use the following https://registry/v2/repository/manifests/tag which gives me Creation Date. This is stale in most cases. I want to know when something was uploaded. If I can't…
Jeff Saremi
  • 2,674
  • 3
  • 33
  • 57
0
votes
1 answer

Docker swarm same image different build

Im using Docker version 19.03.3 with docker swarm, and docker registry. I want to know how can i use the same image but with a different build. my swarm.yml : version: '3' services: db: image: 127.0.0.1:5000/postgres:11.5 …
0
votes
1 answer

OpenShift - Credentials look-up for importing image

I am able to a launch an application with the Redis image from RedHat - registry.redhat.io/rhel8/redis-5 using the following steps. Create a service account at RedHat https://access.redhat.com/ Download the YAML (see below) for image pull secret…
cogitoergosum
  • 2,309
  • 4
  • 38
  • 62
0
votes
0 answers

GitLab and Docker registry on seperate servers

I'm a little bit desperate and starting to going mad. I tried to configure my gitlab instance (omnibus) to work with external private docker image registry. Initialy I thought is should be relatively easy task. But now I totaly confused. My initial…
MaD
  • 13
  • 3
0
votes
1 answer

Why docker push registry errors on certificate file?

As described here How to setup docker private registry on ubuntu 16.04, I changed /etc/hosts like this: 192.168.1.154 registry-server 192.168.1.90 registry-client Then I pulled the registry image: docker pull registry Then I made certificate…
Roham Rafii
  • 2,929
  • 7
  • 35
  • 49
0
votes
1 answer

How to push an openshift built container image to a private registry through a Jenkinsfile

Using the OpenShift oc new-app command, I have built a container image. Instead of pushing the image to a local container registry, I want to push the generated image to a private registry. As I am using Jenkins for CI/CD, I want to automate the…
Vidyasagar Machupalli
  • 2,737
  • 1
  • 19
  • 29
0
votes
1 answer

docker registry cant find files when ansible runs it

I am trying to automate docker registry creating step using ansible. Here is my ansible-playbook : --- - hosts: testansible tasks: - name: Getting docker registry become: true become_method: sudo become_user: root …
Sachith Muhandiram
  • 2,819
  • 10
  • 45
  • 94