python 3.12, etc.

This commit is contained in:
Oleg Sheynin 2024-09-03 19:52:16 -04:00
parent 3eec3e6bf8
commit cac8469f05
11 changed files with 16 additions and 1 deletions

15
admin/docker_images.sh Executable file
View 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

View File

@ -1 +1 @@
1.6.4,homestore /works/cvtt ownership moved to cvtt
1.6.5,python 3.12, etc.