Files
docker-workshop/00_registry/show_images.sh

9 lines
138 B
Bash
Raw Normal View History

2025-03-28 08:21:34 +01:00
#!/bin/bash
if ! which jq >/dev/null ; then
echo "Please install jq first."
exit 1
fi
curl http://localhost:5000/v2/_catalog | jq .