Max Kuchin

Results 14 comments of Max Kuchin

I made a new web app with registry v2 support. Please find the docker image at https://hub.docker.com/r/hyper/docker-registry-web/ and source code at https://github.com/mkuchin/docker-registry-web Feedback is welcome.

Sorry, I'm not finished documentation yet. Basically you need to clone repository on your server: https://github.com/mkuchin/docker-registry-web-install and start `./install.sh ` You need to point DNS to your server public IP...

Ok, it use letsencrypt staging server by default. Could you try to comment the line https://github.com/mkuchin/docker-registry-web-install/blob/master/install.sh#L82 in the install script before starting?

That looks strange. Can you please dump certificate with openssl: ``` openssl s_client -connect abcdefg.com:443 >cert.pem openssl x509 -text -in cert.pem ``` and show Validity field?

It is a limitation of Docker Distribution's API. Please check https://github.com/docker/distribution/issues/1954 for details.

Could you please provide your docker registry logs and config files for docker registry and docker-registry-web ?

YWRtaW46Y2hhbmdlbWU= is base64 encoded string of user:password, in this example it is `admin:changeme`

It already implemented. Could you give more details such as docker registry version and the screenshot of your tag details page?

Above docker compose setup look fine. `/v2/_catalog` request to registry service could display empty repositories that would be hidden in registry-frontend. Could you check if `http://:5000/v2/baseimage/tags/list` return not empty list?

Agree with @Rohlik, there is no easy way to implement search with current registry api. I'm going to implement this feature with processing of [registry notifications](https://docs.docker.com/registry/notifications/) and maintaing copy of...