python 3.12, etc.
This commit is contained in:
parent
3eec3e6bf8
commit
cac8469f05
15
admin/docker_images.sh
Executable file
15
admin/docker_images.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/env bash
|
||||
|
||||
Registry=http://homestore.cvtt.vpn:5500
|
||||
|
||||
Catalog=${Registry}/v2/_catalog
|
||||
|
||||
jstr=$(curl -s -X GET ${Catalog})
|
||||
|
||||
# echo ${jstr}
|
||||
|
||||
echo "${jstr}" | jq -r '.repositories[]' | while read repo; do
|
||||
TagListURL="${Registry}/v2/${repo}/tags/list"
|
||||
# echo $repo
|
||||
curl -s -X GET ${TagListURL}
|
||||
done
|
||||
@ -1 +1 @@
|
||||
1.6.4,homestore /works/cvtt ownership moved to cvtt
|
||||
1.6.5,python 3.12, etc.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user