homestore ==> hs01

This commit is contained in:
2025-01-13 20:04:52 -05:00
parent 7e0c389536
commit a7e442b954
10 changed files with 29 additions and 22 deletions
+9 -2
View File
@@ -1,6 +1,6 @@
#!/bin/env bash
Registry=http://homestore.cvtt.vpn:5500
Registry=http://hs01.cvtt.vpn:5500
Catalog=${Registry}/v2/_catalog
@@ -11,5 +11,12 @@ jstr=$(curl -s -X GET ${Catalog})
echo "${jstr}" | jq -r '.repositories[]' | while read repo; do
TagListURL="${Registry}/v2/${repo}/tags/list"
# echo $repo
curl -s -X GET ${TagListURL}
Cmd="curl -s -X GET ${TagListURL}"
echo ${Cmd}
eval ${Cmd}
# TagList=$(eval ${Cmd})
# # echo ${TagList}
# echo "${TagList}" | jq -r '.tags[]' | while read tag; do
# echo "${Registry}/${repo}:${tag}"
# done
done