forked from docker/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netlify.sh
executable file
·126 lines (110 loc) · 9.14 KB
/
netlify.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
#!/bin/bash
# Script to build master and edge docs on Netlify
# Replicates the non-archive functionality of the Dockerfile
# First build master
ENGINE_SVN_BRANCH="branches/17.06"
ENGINE_BRANCH="17.06"
DISTRIBUTION_SVN_BRANCH="branches/release/2.6"
DISTRIBUTION_BRANCH="release/2.6"
svn co https://github.com/docker/docker-ce/$ENGINE_SVN_BRANCH/components/cli/docs/extend engine/extend \
&& wget -O engine/api/v1.18.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/v1.18.md \
&& wget -O engine/api/v1.19.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/v1.19.md \
&& wget -O engine/api/v1.20.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/v1.20.md \
&& wget -O engine/api/v1.21.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/v1.21.md \
&& wget -O engine/api/v1.22.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/v1.22.md \
&& wget -O engine/api/v1.23.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/v1.23.md \
&& wget -O engine/api/v1.24.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/v1.24.md \
&& wget -O engine/api/version-history.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/api/version-history.md \
&& wget -O engine/reference/glossary.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/reference/glossary.md \
&& wget -O engine/reference/builder.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/reference/builder.md \
&& wget -O engine/reference/run.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/reference/run.md \
&& wget -O engine/reference/commandline/cli.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/reference/commandline/cli.md \
&& wget -O engine/deprecated.md https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/cli/docs/deprecated.md \
&& svn co https://github.com/docker/distribution/$DISTRIBUTION_SVN_BRANCH/docs/spec registry/spec \
&& rm registry/spec/api.md.tmpl \
&& wget -O registry/configuration.md https://raw.githubusercontent.com/docker/distribution/$DISTRIBUTION_BRANCH/docs/configuration.md \
&& rm -rf apidocs/cloud-api-source \
&& rm -rf tests \
&& wget -O engine/api/v1.25/swagger.yaml https://raw.githubusercontent.com/docker/docker/v1.13.0/api/swagger.yaml \
&& wget -O engine/api/v1.26/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.0-ce/api/swagger.yaml \
&& wget -O engine/api/v1.27/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.1-ce/api/swagger.yaml \
&& wget -O engine/api/v1.28/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.04.0-ce/api/swagger.yaml \
&& wget -O engine/api/v1.29/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.05.0-ce/api/swagger.yaml \
&& wget -O engine/api/v1.30/swagger.yaml https://raw.githubusercontent.com/docker/docker-ce/$ENGINE_BRANCH/components/engine/api/swagger.yaml \
&& jekyll build -d site --config _config.yml \
&& rm -rf site/apidocs/layouts \
&& find site -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="https://docs.docker.com/#href="/#g'
echo "Jekyll site in site/"
# Then build edge
ENGINE_SVN_BRANCH="branches/17.05.x"
ENGINE_BRANCH="17.05.x"
DISTRIBUTION_SVN_BRANCH="branches/release/2.6"
DISTRIBUTION_BRANCH="release/2.6"
svn co https://github.com/docker/docker/$ENGINE_SVN_BRANCH/docs/extend engine/extend \
&& wget -O engine/api/v1.18.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.18.md \
&& wget -O engine/api/v1.19.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.19.md \
&& wget -O engine/api/v1.20.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.20.md \
&& wget -O engine/api/v1.21.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.21.md \
&& wget -O engine/api/v1.22.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.22.md \
&& wget -O engine/api/v1.23.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.23.md \
&& wget -O engine/api/v1.24.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/v1.24.md \
&& wget -O engine/api/version-history.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/api/version-history.md \
&& wget -O engine/reference/glossary.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/glossary.md \
&& wget -O engine/reference/builder.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/builder.md \
&& wget -O engine/reference/run.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/run.md \
&& wget -O engine/reference/commandline/cli.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/reference/commandline/cli.md \
&& wget -O engine/deprecated.md https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/docs/deprecated.md \
&& svn co https://github.com/docker/distribution/$DISTRIBUTION_SVN_BRANCH/docs/spec registry/spec \
&& rm registry/spec/api.md.tmpl \
&& wget -O registry/configuration.md https://raw.githubusercontent.com/docker/distribution/$DISTRIBUTION_BRANCH/docs/configuration.md \
&& rm -rf apidocs/cloud-api-source \
&& rm -rf tests \
&& wget -O engine/api/v1.25/swagger.yaml https://raw.githubusercontent.com/docker/docker/v1.13.0/api/swagger.yaml \
&& wget -O engine/api/v1.26/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.0-ce/api/swagger.yaml \
&& wget -O engine/api/v1.27/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.03.1-ce/api/swagger.yaml \
&& wget -O engine/api/v1.28/swagger.yaml https://raw.githubusercontent.com/docker/docker/v17.04.0-ce/api/swagger.yaml \
&& wget -O engine/api/v1.29/swagger.yaml https://raw.githubusercontent.com/docker/docker/$ENGINE_BRANCH/api/swagger.yaml \
&& jekyll build -d site/edge --config _config-edge.yml \
&& echo "Jekyll site in site/edge" \
&& rm -rf site/edge/apidocs/layouts \
&& find site/edge -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="https://docs.docker.com/#href="/#g'
# Replace / rewrite some URLs so that links in the edge directory go to the correct
# location. Note that the order in which these replacements are done is
# important. Changing the order may result in replacements being done
# multiple times.
# First, remove the domain from URLs that include the domain
VER="edge" \
&& BASEURL="$VER/" \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="http://docs-stage.docker.com/#href="/#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="https://docs-stage.docker.com/#src="/#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="https://docs.docker.com/#href="/#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="https://docs.docker.com/#src="/#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="http://docs.docker.com/#href="/#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="http://docs.docker.com/#src="/#g'
# Substitute https:// for schema-less resources (src="//analytics.google.com")
# We're replacing them to prevent them being seen as absolute paths below
find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="//#href="https://#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="//#src="https://#g'
# And some archive versions already have URLs starting with '/version/'
find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="/'"$BASEURL"'#href="/#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="/'"$BASEURL"'#src="/#g'
# Archived versions 1.7 and under use some absolute links, and v1.10 uses
# "relative" links to sources (href="./css/"). Remove those to make them
# work :)
find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="\./#href="/#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="\./#src="/#g'
# Create permalinks for archived versions
find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#href="/#href="/'"$BASEURL"'#g' \
&& find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#src="/#src="/'"$BASEURL"'#g'
# Fix 'Back to Stable Docs' URL
find site/${VER} -type f -name '*.html' -print0 | xargs -0 sed -i 's#<li id="stable-cta"><a href="/edge/">Back to Stable docs</a></li>#<li id="stable-cta"><a href="/">Back to Stable docs</a></li>#g'
# Make sure we don't commit any changes to the actual source files
git reset --hard
if [ -d site/edge ]; then
echo "Edge is where it is supposed to be"
fi
if [ -d _site ]; then
rm -rf _site
fi
mv site _site
jekyll serve -d _site --skip-initial-build -D