@@ -18,6 +18,8 @@ ARG ENGINE_BRANCH="19.03.x"
18
18
# Distribution
19
19
ARG DISTRIBUTION_BRANCH="release/2.7"
20
20
21
+ # Set to "false" to build the documentation without archives
22
+ ARG ENABLE_ARCHIVES=true
21
23
22
24
# ##
23
25
# Set up base stages for building and deploying
@@ -52,17 +54,23 @@ COPY --from=docs/docker.github.io:nginx-onbuild /etc/nginx/conf.d/default.conf /
52
54
CMD echo -e "Docker docs are viewable at:\n http://0.0.0.0:4000" ; exec nginx -g 'daemon off;'
53
55
54
56
55
- # Build the archived docs
56
- # these docs barely change, so can be cached
57
- FROM deploybase AS archives
58
- # Get all the archive static HTML and put it into place. To add a new archive,
59
- # add it here, and ALSO edit _data/docsarchives/archives.yaml to add it to the drop-down
60
- COPY --from=docs/docker.github.io:v17.03 ${TARGET} ${TARGET}
61
- COPY --from=docs/docker.github.io:v17.06 ${TARGET} ${TARGET}
62
- COPY --from=docs/docker.github.io:v17.09 ${TARGET} ${TARGET}
63
- COPY --from=docs/docker.github.io:v17.12 ${TARGET} ${TARGET}
64
- COPY --from=docs/docker.github.io:v18.03 ${TARGET} ${TARGET}
65
- COPY --from=docs/docker.github.io:v18.09 ${TARGET} ${TARGET}
57
+ # Empty stage if archives are disabled (ENABLE_ARCHIVES=false)
58
+ FROM scratch AS archives-false
59
+
60
+ # Stage with static HTML for all archives (ENABLE_ARCHIVES=true)
61
+ FROM scratch AS archives-true
62
+ ENV TARGET=/usr/share/nginx/html
63
+ # To add a new archive, add it here and ALSO edit _data/docsarchive/archives.yaml
64
+ # to add it to the drop-down
65
+ COPY --from=docs/docker.github.io:v17.03 ${TARGET} /
66
+ COPY --from=docs/docker.github.io:v17.06 ${TARGET} /
67
+ COPY --from=docs/docker.github.io:v17.09 ${TARGET} /
68
+ COPY --from=docs/docker.github.io:v17.12 ${TARGET} /
69
+ COPY --from=docs/docker.github.io:v18.03 ${TARGET} /
70
+ COPY --from=docs/docker.github.io:v18.09 ${TARGET} /
71
+
72
+ # Stage either with, or without archives, depending on ENABLE_ARCHIVES
73
+ FROM archives-${ENABLE_ARCHIVES} AS archives
66
74
67
75
# Fetch upstream resources (reference documentation)
68
76
# Only add the files that are needed to build these reference docs, so that
@@ -74,20 +82,37 @@ COPY ./_data/toc.yaml ./_data/
74
82
RUN bash ./_scripts/fetch-upstream-resources.sh .
75
83
76
84
77
- # Build the current docs from the checked out branch
85
+ # Build the static HTML for the current docs.
86
+ # After building with jekyll, fix up some links, but don't touch the archives
78
87
FROM builderbase AS current
79
88
COPY . .
80
89
COPY --from=upstream-resources /usr/src/app/md_source/. ./
81
-
82
- # Build the static HTML, now that everything is in place
83
90
RUN jekyll build -d ${TARGET}
84
-
85
- # Fix up some links, don't touch the archives
86
91
RUN find ${TARGET} -type f -name '*.html' | grep -vE "v[0-9]+\. " | while read i; do sed -i 's#href="https://docs.docker.com/#href="/#g' "$i" ; done
87
92
88
93
89
- # Docs with archives (for deploy)
90
- FROM archives AS deploy
91
-
92
- # Add the current version of the docs
93
- COPY --from=current ${TARGET} ${TARGET}
94
+ # This stage only contains the generated files. It can be used to host the
95
+ # documentation on a non-containerised service (e.g. to deploy to an s3 bucket).
96
+ # When using BuildKit, use the '--output' option to build the files and to copy
97
+ # them to your local filesystem.
98
+ #
99
+ # To build current docs, including archives:
100
+ # DOCKER_BUILDKIT=1 docker build --target=deploy-source --output=./_site .
101
+ #
102
+ # To build without archives:
103
+ # DOCKER_BUILDKIT=1 docker build --target=deploy-source --build-arg ENABLE_ARCHIVES=false --output=./_site .
104
+ FROM archives AS deploy-source
105
+ COPY --from=current /usr/share/nginx/html /
106
+
107
+ # Final stage, which includes nginx, and, depending on ENABLE_ARCHIVES, either
108
+ # current docs and archived versions (ENABLE_ARCHIVES=true), or only the current
109
+ # docs (ENABLE_ARCHIVES=false).
110
+ #
111
+ # To build current docs, including archives:
112
+ # DOCKER_BUILDKIT=1 docker build -t docs .
113
+ #
114
+ # To build without archives:
115
+ # DOCKER_BUILDKIT=1 docker build -t docs --build-arg ENABLE_ARCHIVES=false .
116
+ FROM deploybase AS deploy
117
+ WORKDIR $TARGET
118
+ COPY --from=deploy-source / .
0 commit comments