homestore ==> hs01
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user