This repository was archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathupdate-image-link.sh
executable file
·59 lines (56 loc) · 1.62 KB
/
update-image-link.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash -e
if [ -z "$2" ]; then
echo "Usage: <prefix> <platform>"
exit -1
fi
test -f README.md
echo "Updating $2/README.md..."
mv -f README.md README.tmp
awk -v prefix=$1 -v platform1=$2 -v images="$(find . -maxdepth 3 -mindepth 3 -type d -print)" -- '
BEGIN {
split(images,images2," ");
for (i1 in images2) {
dockerfile[images2[i1]]=1;
split(images2[i1],parts,"/");
os[parts[2]]=1;
usage[parts[3]]=1;
image[parts[4]]=1;
}
asorti(os);
asorti(usage);
asorti(image);
imagelist=0;
}
imagelist==1 && !/^\|.*\|$/ {
imagelist=0;
print "|:-:|---|---|";
for (u1 in usage) {
usage1=usage[u1];
for (i1 in image) {
image1=image[i1];
c2=c3="";
for (o1 in os) {
os2=os1=os[o1];
gsub(/[-.]/,"",os2);
if (!dockerfile["./"os1"/"usage1"/"image1]) continue;
c2=c2"<br>["os1"/"usage1"/"image1"]("os1"/"usage1"/"image1")";
image2=prefix"/"platform1"-"os2"-"usage1"-"image1;
if (system("curl --silent -f -lSL -o /dev/null https://hub.docker.com/v2/repositories/"image2"/tags/latest")==0) {
c3=c3"<br>["image2"](https://hub.docker.com/r/"image2")";
} else {
c3=c3"<br>";
}
}
if (length(c2)==0) continue;
print "|"usage1"-"image1"|"substr(c2,5)"|"substr(c3,5)"|";
}
}
}
imagelist==0 {
print $0;
}
/^\|Image\|Dockerfile\|Docker Image\|$/ {
imagelist=1;
}
' README.tmp > README.md 2> /dev/null
rm -f README.tmp