Questions tagged [docker-registry]

84 questions
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

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
  • 375
  • 1
  • 2
  • 9
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
  • 521
  • 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
  • 163
  • 1
  • 5
  • 11
0
votes
1 answer

How to get the image history from a private docker-registry?

We have a private docker registry that is growing and consuming all the disk space. Until now we increased the disk space two times but now we like to delete the images that haven't been accessed for a long time, how can we get the last time an…
AVarf
  • 449
  • 1
  • 6
  • 18
0
votes
1 answer

Kubernetes: Issues with liveness / readiness probe on S3 storage hosted Docker Registry

Current setup Hello. I'm using a Docker Registry helm chart deployed with an S3 storage. Now I would like to update (change) the way the live/readiness probes work. The reason being that after one day of use, I have depleted the free tier monthly…
David
  • 101
  • 3
0
votes
1 answer

How to block specific port with iptables

I have a service running (docker registry) on my debian server at port 5000. I would like to restrict access to that to specific IP, so I've created a file with rules (1.2.3.4 is my trusted IP) *filter -A INPUT -p tcp --dport 5000 --source 1.2.3.4…
elzix88
  • 1
  • 1
-1
votes
1 answer

kubernetes not connecting to docker hub

Alright, so I am trying to publish a private docker image to kubernetes, and I am running into some odd issues. I start of with logging into docker docker login -u $DOCKER_USER -p $DOCKER_TOKEN and that will store my password in a config file for…
munHunger
  • 363
  • 1
  • 3
  • 9
-1
votes
2 answers

Does Alpine Linux Docker Image contain OpenSSL

Does the official alpine docker image bundle OpenSSL. I created a new container locally and I can't find the openssl command. Is there an official doco with everything that's installed by default? I couldn't find it on the alpine website?
Nikolay
  • 107
  • 1
  • 2
1 2 3 4 5
6