forked from docker-library/docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdate.sh
executable file
·128 lines (104 loc) · 4.31 KB
/
update.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/bin/bash
set -e
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
repos=( "$@" )
if [ ${#repos[@]} -eq 0 ]; then
repos=( */ )
fi
repos=( "${repos[@]%/}" )
replace_field() {
repo="$1"
field="$2"
content="$3"
extraSed="${4:-}"
sed_escaped_value="$(echo "$content" | sed 's/[\/&]/\\&/g')"
sed_escaped_value="${sed_escaped_value//$'\n'/\\n}"
sed -ri "s/${extraSed}%%${field}%%${extraSed}/$sed_escaped_value/g" "$repo/README.md"
}
declare -A otherRepos=(
[biicode]='https://github.com/biicode/docker-biicode'
[busybox]='https://github.com/jpetazzo/docker-busybox'
[centos]='https://github.com/CentOS/sig-cloud-instance-images'
[cirros]='https://github.com/ewindisch/docker-cirros'
[clojure]='https://github.com/Quantisan/docker-clojure'
[crate]='https://github.com/crate/docker-crate'
[crux]='https://github.com/therealprologic/docker-crux'
[debian]='https://github.com/tianon/docker-brew-debian'
[docker-dev]='https://github.com/docker/docker'
[fedora]='https://github.com/lsm5/docker-brew-fedora'
[haskell]='https://github.com/darinmorrison/docker-haskell'
[hipache]='https://github.com/dotcloud/hipache'
[hylang]='https://github.com/hylang/hy'
[iojs]='https://github.com/iojs/docker-iojs'
[jenkins]='https://github.com/cloudbees/jenkins-ci.org-docker'
[jruby]='https://github.com/cpuguy83/docker-jruby'
[mageia]='https://github.com/juanluisbaptiste/docker-brew-mageia'
[maven]='https://github.com/carlossg/docker-maven'
[mono]='https://github.com/mono/docker'
[neurodebian]='https://github.com/neurodebian/dockerfiles'
[nginx]='https://github.com/nginxinc/docker-nginx'
[node]='https://github.com/joyent/docker-node'
[odoo]='https://github.com/odoo/docker'
[opensuse]='https://github.com/openSUSE/docker-containers-build'
[oraclelinux]='https://github.com/oracle/docker-images'
[perl]='https://github.com/Perl/docker-perl'
[r-base]='https://github.com/rocker-org/rocker'
[registry]='https://github.com/docker/docker-registry'
[thrift]='https://github.com/ahawkins/docker-thrift'
[ubuntu-debootstrap]='https://github.com/tianon/docker-brew-ubuntu-debootstrap'
[ubuntu-upstart]='https://github.com/tianon/dockerfiles'
[ubuntu]='https://github.com/tianon/docker-brew-ubuntu-core'
)
dockerLatest="$(curl -sSL 'https://get.docker.com/latest')"
for repo in "${repos[@]}"; do
if [ -x "$repo/update.sh" ]; then
( set -x; "$repo/update.sh" )
fi
if [ -e "$repo/content.md" ]; then
gitRepo="${otherRepos[$repo]}"
if [ -z "$gitRepo" ]; then
gitRepo="https://github.com/docker-library/$repo"
fi
mailingList="$(cat "$repo/mailing-list.md" 2>/dev/null || true)"
if [ "$mailingList" ]; then
mailingList=" $mailingList "
else
mailingList=' '
fi
dockerVersions="$(cat "$repo/docker-versions.md" 2>/dev/null || cat 'docker-versions.md')"
userFeedback="$(cat "$repo/user-feedback.md" 2>/dev/null || cat 'user-feedback.md')"
license="$(cat "$repo/license.md" 2>/dev/null || true)"
if [ "$license" ]; then
license=$'\n\n''# License'$'\n\n'"$license"
fi
logo=
if [ -e "$repo/logo.png" ]; then
logo="![logo](https://raw.githubusercontent.com/docker-library/docs/master/$repo/logo.png)"
fi
cp -v README-template.md "$repo/README.md"
echo ' TAGS => ./generate-dockerfile-links-partial.sh'
replace_field "$repo" 'TAGS' "$(./generate-dockerfile-links-partial.sh "$repo")"
echo ' CONTENT => '"$repo"'/content.md'
replace_field "$repo" 'CONTENT' "$(cat "$repo/content.md")"
# has to be after CONTENT because it's contained in content.md
echo " LOGO => $logo"
replace_field "$repo" 'LOGO' "$logo" '\s*'
echo ' DOCKER-VERSIONS => '"$repo"'/docker-versions.md'
replace_field "$repo" 'DOCKER-VERSIONS' "$dockerVersions"
echo ' DOCKER-LATEST => "'"$dockerLatest"'"'
replace_field "$repo" 'DOCKER-LATEST' "$dockerLatest"
echo ' LICENSE => '"$repo"'/license.md'
replace_field "$repo" 'LICENSE' "$license"
echo ' USER-FEEDBACK => '"$repo"'/user-feedback.md'
replace_field "$repo" 'USER-FEEDBACK' "$userFeedback"
echo ' MAILING-LIST => '"$repo"'/mailing-list.md'
replace_field "$repo" 'MAILING-LIST' "$mailingList" '\s*'
echo ' REPO => "'"$repo"'"'
replace_field "$repo" 'REPO' "$repo"
echo ' GITHUB-REPO => "'"$gitRepo"'"'
replace_field "$repo" 'GITHUB-REPO' "$gitRepo"
echo
else
echo >&2 "skipping $repo: missing repo/content.md"
fi
done