jc21 / docker-registry-ui

😎 A nice web interface for managing your Docker Registry images
MIT License
324 stars 71 forks source link

show images labels in detailed view #6

Open protheusfr opened 5 years ago

protheusfr commented 5 years ago

Because more and more docker images are built from CI/CD tools, it could be really useful to view image labels in images tab. The labels can provide critical data like source git hash, build date, etc... , ex :

            "Labels": {
                "org.label-schema.build-date": "2019-05-09T16:39:25Z",
                "org.label-schema.schema-version": "1.0",
                "org.label-schema.vcs-ref": "2103d7b6fac15ccf6df7ef9cd3661aa89ec94a0f",
                "org.label-schema.vcs-url": "https://git.xxx.fr/XXXXX/xxxxxx.git"
            }
jc21 commented 5 years ago

Cool idea, but I'm not actively working on this project anymore. I use Portus for my own registry UI now. It doesn't have tag support either though.

protheusfr commented 5 years ago

Hmmm I've quickly checked docker http API documentation, it seems there is no available call to get labels.... then this would be tricky.