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
0 answers

failed to deploy a local registry with tls in k8s cluster

I deploy the private registry with tls as per the guide here https://www.nearform.com/blog/how-to-run-a-public-docker-registry-in-kubernetes/,but i failed to pass the test. i am stumped,Any suggestions/tutorials ? definition of issuer: …
aditya cn
  • 61
  • 4
0
votes
1 answer

How to get Docker Registry for Dedicated Server on OVH

I have added dedicated server on OVH and now I need to push docker image on OVH but I do not know where does Docker Registry exist on OVH and how to activate it. Please let me know if someone is aware of it ?
gbhati
  • 493
  • 1
  • 8
  • 20
0
votes
1 answer

How to push a Docker Application Package to private registry via TLS using a self-signed certificate

docker-app is an experimental tool and I would like to use it with my self-hosted docker registry, not the centralized Docker Hub. Seemingly it's supported and based on the error message it tries to connect to my registry server but it fails with…
0
votes
1 answer

Why does my proxied docker network request work locally but not in production?

I'm working on a project to build a front end for a private/secure docker registry. The way I'm doing this is to use docker-compose to create a network between the front end and the registry. My idea is to use express to serve my site and forward…
aberkow
  • 330
  • 1
  • 10
0
votes
2 answers

Docker add --insecure-registry for current session only

Is it possible to add an --insecure-registry=docker.my-registry to the current session only with environment variables or similar? I'd like to do some testing without changing my current Docker setup (for example I might not be able to restart the…
Eldad Assis
  • 10,464
  • 11
  • 52
  • 78
0
votes
1 answer

Configuring insecure (http) private docker registry with halyard in spinnaker

I'm able to configure public docker hub registry using below halyard command, however while trying to use the same command to configure a privately hosted docker registry (insecure) I'm facing the below error. hal config provider docker-registry…
alok
  • 56
  • 5
0
votes
1 answer

Getting error on PUT "Body length 0" using net/http

I am using this Go API client on my app https://github.com/heroku/docker-registry-client to interact with a docker registry using Go. The case is that internally that is having some issue when does a PUT request using the package "net/http". When I…
zale
  • 33
  • 8
0
votes
0 answers

GitLab CI how to store credentials to docker registry

I'd like to have credentials to my registry stored in gitlab (encrypted) and use them to deploy images, what is a proper way to do so? (I'm using external registry, not gitlab container registry)
0
votes
1 answer

VSTS Build Definition - Creating Docker Image from Java Application

I have a Java application in VSTS for which a build definition has been created to generate a number of build artifacts which include an ear file and a server configuration file. All of these build artifacts are zipped up in a final build definition…
0
votes
1 answer

What should be there in the variable REGISTRY_AUTH_TOKEN_REALM, if you use an external docker?

I try configure Gitlab to use an Docker registry Read article: How to setup omnibus installation to use an external Docker registry? But this articles about native docker registry. Does anyone have an article on setting configure Gitlab to use an…
Anton Patsev
  • 605
  • 2
  • 13
  • 27
0
votes
1 answer

pushing docker image to registery of docker on a different host machine

I have two computers both have docker, I want to keep my docker image I made to the other host the does not connect to internet but is on local LAN. so this is my machine (I use hello-world image example) macHost:~ ciasto$ docker tag hello-world…
Ciasto piekarz
  • 7,853
  • 18
  • 101
  • 197
0
votes
1 answer

Docker registry in kubernetes with cert-manager

I'm using cert-manager for SSL management with configuration on ingress level. For example this config for .com (skipping metadata and other not-related config parts): kind: Certificate spec: secretName: myhost-tls issuerRef: name:…
Kirill
  • 7,580
  • 6
  • 44
  • 95
0
votes
0 answers

Cannot push to Kubernetes registry

i have a problem to push a docker image to my private registry. It starts but stops within 1% and then timeouts. My yml files are: --- apiVersion: v1 kind: ConfigMap metadata: name: auth namespace: kube-system labels: k8s-app:…
0
votes
1 answer

How to "docker push" to dynamic insecure registries?

OS: Amazon Linux (hosted on AWS) Docker version: 17.x Tools: Ansible, Docker Our developers use Ansible to be able to spin up individual AWS spot environments that get populated with docker images that get built on their local machines, pushed into…
JoeB
  • 1,538
  • 1
  • 11
  • 9
0
votes
1 answer

Find image tag variants of a given tag

If I run this: $ docker search node I get some results in the terminal: NAME DESCRIPTION STARS OFFICIAL AUTOMATED node …
Alexander Mills
  • 90,741
  • 139
  • 482
  • 817
1 2 3
99
100