Top "Docker-registry" questions

Docker Registry is a service which you can push Docker images to for storage and sharing.

docker build + private NPM (+ private docker hub)

I have an application which runs in a Docker container. It requires some private modules from the company's private NPM …

node.js docker npm docker-registry npm-private-modules
Docker image push over SSH (distributed)

TL;DR Basically, I am looking for this: docker push myimage ssh://myvps01.vpsprovider.net/ I am failing to grasp …

ssh docker docker-registry
Docker parallel operations limit

Is there a limit to the number of parallel Docker push/pulls you can do? E.g. if you thread …

docker concurrency dockerfile docker-registry
Where Docker default registry URL is configured?

I am refering to this link - Docker pull. By default, docker pull pulls images from Docker Hub (https://hub.…

docker docker-registry docker-repository
How to publish docker images to docker hub from gitlab-ci

Gitlab provides a .gitlab-ci.yml template for building and publishing images to its own registry (click "new file" in one …

gitlab-ci docker-registry
Setting up a remote private Docker registry

I need some tips on setting up a 'remote private Docker registry'. README.md on Docker-Registry mainly focus on private …

docker docker-registry
(Kubernetes + Minikube) can't get docker image from local registry

I have setup docker on my machine and also minikube which have docker inside it, so probably i have two …

docker kubernetes docker-registry minikube
Difference between 'image' and 'build' within docker compose

Please help me understand the difference between 'image' and 'build' within docker compose

docker dockerfile docker-compose docker-registry
Pull Docker from my private docker-registry without specifying the host

I am using docker-registry to pull my own docker images, but I want to do so without the need to …

docker docker-registry
docker push to the registry with changed Dockerfile and same tag

Imagine, I have docker image based on Dockerfile, I will tag & push it into docker registry Over time, I …

docker docker-registry