Skip to content

Commit f56f147

Browse files
authored
Merge pull request docker#10331 from thaJeztah/archives_and_source_only
Dockerfile: allow building without archives, and exporting HTML source
2 parents 711567c + c8b335c commit f56f147

File tree

1 file changed

+46
-21
lines changed

1 file changed

+46
-21
lines changed

Dockerfile

+46-21
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ ARG ENGINE_BRANCH="19.03.x"
1818
# Distribution
1919
ARG DISTRIBUTION_BRANCH="release/2.7"
2020

21+
# Set to "false" to build the documentation without archives
22+
ARG ENABLE_ARCHIVES=true
2123

2224
###
2325
# 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 /
5254
CMD echo -e "Docker docs are viewable at:\nhttp://0.0.0.0:4000"; exec nginx -g 'daemon off;'
5355

5456

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
6674

6775
# Fetch upstream resources (reference documentation)
6876
# Only add the files that are needed to build these reference docs, so that
@@ -74,20 +82,37 @@ COPY ./_data/toc.yaml ./_data/
7482
RUN bash ./_scripts/fetch-upstream-resources.sh .
7583

7684

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
7887
FROM builderbase AS current
7988
COPY . .
8089
COPY --from=upstream-resources /usr/src/app/md_source/. ./
81-
82-
# Build the static HTML, now that everything is in place
8390
RUN jekyll build -d ${TARGET}
84-
85-
# Fix up some links, don't touch the archives
8691
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
8792

8893

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

Comments
 (0)