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

Create docker service with image from private registry through python library

I use the Docker SDK for Python to start a service on docker Swarm. The image I require is on a private registry. I would use the --with-registry-auth flag for the docker cli, but it seems it does not exist in the Python module. How can I achieve…
Natjo
  • 2,005
  • 29
  • 75
0
votes
0 answers

Why i get sha256 verifying error by pulling dotnet docker image?

i try to pull dotnet 3.1 on Debian 9 machine with docker and got this error: Error pulling image configuration: image config verification failed for digetst sha256: docker comand: docker pull…
DevLife
  • 519
  • 1
  • 4
  • 6
0
votes
0 answers

How to access a Docker registry integrated in GitLab?

I need to access a Docker registry activated in a GitLab project (as a “package”) from an own script. After a successful “docker login”, I can sucessfully “docker push”. So far, so good. My ~/.docker/config.json…
Torsten Bronger
  • 9,899
  • 7
  • 34
  • 41
0
votes
1 answer

Certificate / SSL connection problem in docker build on macOS

I am building a docker image on macOS. This is the part of my Dockerfile: FROM ubuntu:18.04 # Dir you need to override to keep data on reboot/new container: VOLUME /var/lib/mysql #VOLUME /var/www/MISP/Config # Dir you might want to override in…
0
votes
1 answer

Docker login to custom Docker registry fails

There's a custom Docker registry that I'm trying to login in order to upload my Docker image. I'm able to log in to the same custom Docker registry through web UI. But the same fails using docker login command. Let's take demo.registry.com as the…
Aravind
  • 256
  • 1
  • 4
  • 17
0
votes
1 answer

How can I make an image from the current environment to share docker hub?

I have some services running when I run docker-compose up command. Now I want to make an image from the current environment and share it with docker hub so that every time I can use docker pull/run my_own_image command from the docker hub. Is there…
Bablu Ahmed
  • 4,412
  • 5
  • 49
  • 64
0
votes
1 answer

Failed to pull container images via short reference format

I have a problem downloading container images from a private docker registry. The registry need no authentication credentials and is only available over the internal network. I have configured the registries in /etc/docker/daemon.json like the…
Volker Raschek
  • 545
  • 1
  • 6
  • 21
0
votes
0 answers

How to configure or customize Docker Registry to authorize access at the tag level

I'm using the Docker Registry published at https://hub.docker.com/_/registry and I've written my own authorization server to implement our custom access controls, but there is a snag: The scope information passed to the authorization server does…
0
votes
1 answer

Getting docker error, daemon is missing signature key on docker pull

I have been trying to pull a docker image; which has been pushed successfully to the private jfrog repository using the same terminal and in same session. There comes no issues while pushing the image, however on doing a pull it is getting failed…
0
votes
1 answer

Docker image versioning with docker stack

I've setup a staging and a production server. The flow is as follows. I develop and push my new image to the staging registry. There the code is tested and if everything fits I want to push the image to the production server. I also want to use…
FishingIsLife
  • 1,972
  • 3
  • 28
  • 51
0
votes
1 answer

unable to get the full path to root (/var/lib/docker): canonical path points to a file '/usr/bin/docker'

docker command : sudo dcokerd It is failing with below error : INFO[2020-03-12T13:48:44.712934798+05:30] Starting up Unable to get the full path to root (/var/lib/docker): canonical path points to a file '/usr/bin/docker'
0
votes
0 answers

docker login to hosted repository nexus failed

I'm trying to connect to a private repository, in my case it's nexus, in order to push some Docker images. After setting up the repository on nexus, nginx config file, and the self-signed certificate using keytool, I still have the error shown…
Tom
  • 1
  • 3
0
votes
2 answers

Getting error while running "Harbor" in Kubernetes Cluster set up locally using Ubuntu 16.04 server

While running Harbor, a caching service for K8s, I'm getting the following error: error: unable to recognize "harbor.yaml": no matches for kind "Deployment" in version "v1.10.1" Is there documentation for a working version of Harbor yet?
0
votes
1 answer

Deploying Harbor in Kubernetes

I'm getting an error "error: unable to recognize "harbor.yaml": no matches for kind "Deployment" in version "v1.10." What should I use in version variable, while writing the YAML, please tell?
0
votes
1 answer

OpenShift docker push 500 internal server error

I am running OpenShift 3.11 version and followed instructions from this documentation: https://docs.openshift.com/container-platform/3.11/install_config/registry/accessing_registry.html However, whenever I run the below command, I see the…
pree
  • 2,297
  • 6
  • 37
  • 55