Questions tagged [docker-registry]

79 questions
0
votes
1 answer

How let user manage web applications using docker?

For web hosting, my company is looking to use docker containers for each web application with a reverse proxy as front-end. It works but we are looking for a way to let our users manage their own applications, admins will control public and private…
Kartoch
  • 233
  • 4
  • 14
0
votes
1 answer

Run Docker Registry behind iptables

I am trying to run a private docker registry on my CentOS 7 VPS which is running httpd apache and iptables. When I start the container, docker run -it -p 5017:5000 --name registry registry, I try to run curl http://localhost:5017/v2 and I get the…
Jwags
  • 101
  • 3
0
votes
0 answers

Can't Access Docker Registry 2 locally through curl or remotely - Private Docker Registry

I have been trying to run the Docker Registry on my VPS but I have had no luck. I have been reading the docs here, following guides like Digital Ocean, as well as Googling and following other tutorials and posts. I spent the better half of yesterday…
Jwags
  • 101
  • 3
0
votes
0 answers

Can Gitlab container registry store containers at the group level or only at the repository level?

Using a self-hosted GitLab instance I can configure the GitLab container registry under a repository successfully. The repository is part of a GitLab group. It would be more logical, organizationally, if the containers were stored as part of the…
davidparks21
  • 878
  • 1
  • 11
  • 25
0
votes
1 answer

Docker registry on localhost does not work

I am using a private docker registry on the host foo with the following docker-compose.yml: version: '3.2' services: registry: restart: unless-stopped image: registry:2 ports: - 5000:5000 volumes: -…
t777
  • 131
  • 6
0
votes
0 answers

Image pull bug when using multi-OS Docker repo together with multi-OS Kubernetes cluster

Our company's Kubernetes cluster recently started experiencing Docker image pull errors after AKS update of K8s versions (1.21.9 to 1.22.6). No changes were made to cluster config. Apparently the cluster no longer handshakes correctly with all…
Jeremy Beale
  • 101
  • 2
0
votes
1 answer

Getting 401 Unauthorized while trying to pull images from local docker registry (harbor) from k3s

Due to work I need to self-host a local docker proxy cache using Harbor. So i wen to their doc and I installed the server and configured it properly, accesing it via FQDN and using a self-signed certificate. I'm able to use docker login from…
k.Cyborg
  • 111
  • 8
0
votes
0 answers

install helm chart package without public container registry (offline,locally)

My problem is when i want to install a package in Kubernetes cluster with helm chart, for example install gitlab with helm, during installation there is need to download docker image from a public registry and i don't access internet and i ran nexus…
Mousa
  • 1
  • 2
0
votes
0 answers

Harbor behind a traefik reverse proxy docker login timeout

So I'm loosely following Robert Jensen's blog post to create a Harbor registry for my home lab. I host multiple services on one machine and so I have traefik running beautifully as a reverse proxy for all my web based docker containers. My traefik…
0
votes
1 answer

Docker private registry as kubernetes pod - deleted images auto-recreated

I run a docker private registry v2.7.0 as a kubernetes pod with a service and a persistent volume, thanks to the Varun Kumar G tutorial, which has been the only successful method on my setup, for kubernetes to pull from my private docker registry on…
0
votes
1 answer

System-wide Docker login?

Is there any way to log a whole machine / Docker daemon into a registry? Everything I see about docker login and various proprietary credentials helpers uses ~/.docker/config.json, i.e. is per-user. I have a situation where I would like to pull…
Bernd Haug
  • 878
  • 5
  • 11
0
votes
1 answer

Why does my container not contain DB data after I commit it?

I'm trying to create a PostgreSQL container that already contains development data. I can see the data I have created, but when I commit, push, and pull the image, the data is not there. Below is my Dockerfile: FROM postgis/postgis:11-2.5 MAINTAINER…
Travis
  • 355
  • 1
  • 2
  • 8
0
votes
1 answer

Gitlab Container Registry timeout when connecting

Building an on-prem / self-hosted deployment of Gitlab for the first time. I've got the self-installation completed, single box and three dedicated hosts for runners (that I'm working to get them dockerized for docker-in-docker). Did this from a…
DavisTasar
  • 174
  • 1
  • 3
  • 16
0
votes
1 answer

Unable to create and connect to own docker registry

I'm trying to host a private docker registry. I've followed: https://docs.docker.com/registry/ to create my own registry? But when running: curl http://127.0.0.1:5000 It exits without error, but without result either.
Raoul Debaze
  • 431
  • 1
  • 4
  • 6
0
votes
1 answer

Minikube Failed to pull image http: server gave HTTP response to HTTPS client

I've a minikube running on OSX with hyperkit with insecure registry enabled $ minikube start minikube 1.12.1 is available! Download it: https://github.com/kubernetes/minikube/releases/tag/v1.12.1 To disable this notice, run: 'minikube config set…
bachr
  • 153
  • 5
  • 11