Hier werden die Unterschiede zwischen zwei Versionen gezeigt.
| Beide Seiten, vorherige Überarbeitung Vorherige Überarbeitung Nächste Überarbeitung | Vorherige Überarbeitung | ||
|
admin_grundlagen:docker:registry_server [2026/06/02 06:53] peter_rossbach2 [Image zu Registry übertragen] |
admin_grundlagen:docker:registry_server [2026/06/02 08:29] (aktuell) peter_rossbach2 [Image zu Registry übertragen] |
||
|---|---|---|---|
| Zeile 58: | Zeile 58: | ||
| Abfragen, ob das Image angekommen ist: | Abfragen, ob das Image angekommen ist: | ||
| curl http://registry.notebook36.linuxhotel.de:5000/v2/_catalog | curl http://registry.notebook36.linuxhotel.de:5000/v2/_catalog | ||
| - | curl http://$PRIVATE_IP:5000/v2/_catalog | + | curl http://$PRIVATE_IP4:5000/v2/_catalog |
| + | docker manifest inspect --insecure $PRIVATE_IP4:5000/ingo/debian:trixie | ||
| + | curl -s \ | ||
| + | http://$PRIVATE_IP4:5000/v2/ingo/debian/tags/list | jq | ||
| + | |||
| + | ==== Reference Registry Tools ===== | ||
| + | - [[https://github.com/oras-project/oras|ORAS]] | ||
| + | - [[https://github.com/podman-container-tools/skopeo|Skopeo]] | ||
| + | - [[https://github.com/regclient/regclient|Regclient]] | ||
| + | |||
| + | |||
| + | ++++ Reg UI | | ||
| + | - [[https://github.com/Joxit/docker-registry-ui|docker-registry-ui]] | ||
| + | |||
| + | <code bash> | ||
| + | docker run -d -p 8080:80 --name reg-ui \ | ||
| + | --env REGISTRY_URL=http://$PRIVATE_IP4:5000 \ | ||
| + | joxit/docker-registry-ui:latest | ||
| + | </code> | ||
| + | |||
| + | ++++ | ||