List image-names and tags from your docker-image-registry.
97
IMAGE REGISTRY EXPLORER
List all image-names and tags from your registry.
Validate: you can access the ENDPOINT of you registry - example:
http://192.168.1.9:5000/v2/_catalog
{"repositories":["person","product","cart"]}
http://192.168.1.9:5000/v2/person/tags/list/
{"name":"person","tags":["1.0"]}
PARAMETER via ENVIRONMENT-VARIABLE: URL: from your exposed service IP-ADRRESS from the registry-container - example : http://192.168.1.9:5000
RUN A QUICK TEST
docker run --name image-registry-explorer-container \
--cpus="0.5" \
--memory="150m" --memory-reservation="150m" \
--env URL="http://192.168.1.9:5000" \
--rm \
-p 7780:7780 \
lmldocker/image-registry-explorer:1.0
Then, open your browser and access:
http://127.0.0.1:7780/
Later, subst the --rm with --restart=always
Content type
Image
Digest
sha256:83d587167…
Size
158.7 MB
Last updated
over 3 years ago
docker pull lmldocker/image-registry-explorer:1.0