mirror of https://github.com/docker/docs.git
Dockerfile: remove use of $SOURCE env-var
This variable is no longer needed, as the scripts are always executed relative to the current directory (`.`). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
d386c4cd2c
commit
5d8ce076f7
|
@ -14,7 +14,6 @@
|
||||||
# Get basic configs and Jekyll env
|
# Get basic configs and Jekyll env
|
||||||
FROM docs/docker.github.io:docs-builder AS builder
|
FROM docs/docker.github.io:docs-builder AS builder
|
||||||
ENV TARGET=/usr/share/nginx/html
|
ENV TARGET=/usr/share/nginx/html
|
||||||
ENV SOURCE=.
|
|
||||||
WORKDIR /usr/src/app/md_source/
|
WORKDIR /usr/src/app/md_source/
|
||||||
|
|
||||||
# Get the current docs from the checked out branch
|
# Get the current docs from the checked out branch
|
||||||
|
|
|
@ -29,14 +29,11 @@ while getopts ":hl" opt; do
|
||||||
done
|
done
|
||||||
|
|
||||||
# Do some sanity-checking to make sure we are running this from the right place
|
# Do some sanity-checking to make sure we are running this from the right place
|
||||||
SOURCE="."
|
|
||||||
if ! [ -f _config.yml ]; then
|
if ! [ -f _config.yml ]; then
|
||||||
echo "Could not find _config.yml. We may not be in the right place. Bailing."
|
echo "Could not find _config.yml. We may not be in the right place. Bailing."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Operating on contents of $SOURCE"
|
|
||||||
|
|
||||||
# Parse some variables from _config.yml and make them available to this script
|
# Parse some variables from _config.yml and make them available to this script
|
||||||
# This only finds top-level variables with _version in them that don't have any
|
# This only finds top-level variables with _version in them that don't have any
|
||||||
# leading space. This is brittle!
|
# leading space. This is brittle!
|
||||||
|
@ -47,10 +44,10 @@ while read i; do
|
||||||
varvalue=$(echo "$i" | sed 's/"//g' | awk -F ':' {'print $2'} | tr -d '[:space:]')
|
varvalue=$(echo "$i" | sed 's/"//g' | awk -F ':' {'print $2'} | tr -d '[:space:]')
|
||||||
echo "Setting \$${varname} to $varvalue"
|
echo "Setting \$${varname} to $varvalue"
|
||||||
declare "$varname=$varvalue"
|
declare "$varname=$varvalue"
|
||||||
done < <(cat ${SOURCE}/_config.yml |grep '_version:' |grep '^[a-z].*')
|
done < <(cat ./_config.yml |grep '_version:' |grep '^[a-z].*')
|
||||||
|
|
||||||
# Replace variable in toc.yml with value from above
|
# Replace variable in toc.yml with value from above
|
||||||
sedi "s/{{ site.latest_engine_api_version }}/$latest_engine_api_version/g" ${SOURCE}/_data/toc.yaml
|
sedi "s/{{ site.latest_engine_api_version }}/$latest_engine_api_version/g" ./_data/toc.yaml
|
||||||
|
|
||||||
# Engine stable
|
# Engine stable
|
||||||
ENGINE_SVN_BRANCH="branches/18.09"
|
ENGINE_SVN_BRANCH="branches/18.09"
|
||||||
|
@ -61,17 +58,17 @@ DISTRIBUTION_SVN_BRANCH="branches/release/2.6"
|
||||||
DISTRIBUTION_BRANCH="release/2.6"
|
DISTRIBUTION_BRANCH="release/2.6"
|
||||||
|
|
||||||
# Directories to get via SVN. We use this because you can't use git to clone just a portion of a repository
|
# Directories to get via SVN. We use this because you can't use git to clone just a portion of a repository
|
||||||
svn co https://github.com/docker/docker-ce/"$ENGINE_SVN_BRANCH"/components/cli/docs/extend ${SOURCE}/engine/extend || (echo "Failed engine/extend download" && exit 1)
|
svn co https://github.com/docker/docker-ce/"$ENGINE_SVN_BRANCH"/components/cli/docs/extend ./engine/extend || (echo "Failed engine/extend download" && exit 1)
|
||||||
svn co https://github.com/docker/docker-ce/"$ENGINE_SVN_BRANCH"/components/engine/docs/api ${SOURCE}/engine/api || (echo "Failed engine/api download" && exit 1) # This will only get you the old API MD files 1.18 through 1.24
|
svn co https://github.com/docker/docker-ce/"$ENGINE_SVN_BRANCH"/components/engine/docs/api ./engine/api || (echo "Failed engine/api download" && exit 1) # This will only get you the old API MD files 1.18 through 1.24
|
||||||
svn co https://github.com/docker/distribution/"$DISTRIBUTION_SVN_BRANCH"/docs/spec ${SOURCE}/registry/spec || (echo "Failed registry/spec download" && exit 1)
|
svn co https://github.com/docker/distribution/"$DISTRIBUTION_SVN_BRANCH"/docs/spec ./registry/spec || (echo "Failed registry/spec download" && exit 1)
|
||||||
svn co https://github.com/docker/compliance/trunk/docs/compliance ${SOURCE}/compliance || (echo "Failed docker/compliance download" && exit 1)
|
svn co https://github.com/docker/compliance/trunk/docs/compliance ./compliance || (echo "Failed docker/compliance download" && exit 1)
|
||||||
|
|
||||||
# Get the Library docs
|
# Get the Library docs
|
||||||
svn co https://github.com/docker-library/docs/trunk ${SOURCE}/_samples/library || (echo "Failed library download" && exit 1)
|
svn co https://github.com/docker-library/docs/trunk ./_samples/library || (echo "Failed library download" && exit 1)
|
||||||
# Remove symlinks to maintainer.md because they break jekyll and we don't use em
|
# Remove symlinks to maintainer.md because they break jekyll and we don't use em
|
||||||
find ${SOURCE}/_samples/library -maxdepth 9 -type l -delete
|
find ./_samples/library -maxdepth 9 -type l -delete
|
||||||
# Loop through the README.md files, turn them into rich index.md files
|
# Loop through the README.md files, turn them into rich index.md files
|
||||||
FILES=$(find ${SOURCE}/_samples/library -type f -name 'README.md')
|
FILES=$(find ./_samples/library -type f -name 'README.md')
|
||||||
for f in $FILES
|
for f in $FILES
|
||||||
do
|
do
|
||||||
curdir=$(dirname "${f}")
|
curdir=$(dirname "${f}")
|
||||||
|
@ -104,7 +101,7 @@ do
|
||||||
echo GitHub repo: \["${gitrepo}"\]\("${gitrepo}"\)\{: target="_blank"\} >> ${curdir}/front-matter.txt
|
echo GitHub repo: \["${gitrepo}"\]\("${gitrepo}"\)\{: target="_blank"\} >> ${curdir}/front-matter.txt
|
||||||
echo >> ${curdir}/front-matter.txt
|
echo >> ${curdir}/front-matter.txt
|
||||||
fi
|
fi
|
||||||
cat ${curdir}/front-matter.txt ${SOURCE}/_samples/boilerplate.txt > ${curdir}/header.txt
|
cat ${curdir}/front-matter.txt ./_samples/boilerplate.txt > ${curdir}/header.txt
|
||||||
echo {% raw %} >> ${curdir}/header.txt
|
echo {% raw %} >> ${curdir}/header.txt
|
||||||
cat ${curdir}/header.txt ${curdir}/README.md > ${curdir}/index.md
|
cat ${curdir}/header.txt ${curdir}/README.md > ${curdir}/index.md
|
||||||
echo {% endraw %} >> ${curdir}/index.md
|
echo {% endraw %} >> ${curdir}/index.md
|
||||||
|
@ -116,37 +113,37 @@ done
|
||||||
# Be careful with the locations on Github for these
|
# Be careful with the locations on Github for these
|
||||||
# When you change this you need to make sure to copy the previous
|
# When you change this you need to make sure to copy the previous
|
||||||
# directory into a new one in the docs git and change the index.html
|
# directory into a new one in the docs git and change the index.html
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.25/ https://raw.githubusercontent.com/docker/docker/v1.13.0/api/swagger.yaml || (echo "Failed 1.25 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.25/ https://raw.githubusercontent.com/docker/docker/v1.13.0/api/swagger.yaml || (echo "Failed 1.25 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.26/ https://raw.githubusercontent.com/docker/docker/v17.03.0-ce/api/swagger.yaml || (echo "Failed 1.26 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.26/ https://raw.githubusercontent.com/docker/docker/v17.03.0-ce/api/swagger.yaml || (echo "Failed 1.26 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.27/ https://raw.githubusercontent.com/docker/docker/v17.03.1-ce/api/swagger.yaml || (echo "Failed 1.27 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.27/ https://raw.githubusercontent.com/docker/docker/v17.03.1-ce/api/swagger.yaml || (echo "Failed 1.27 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.28/ https://raw.githubusercontent.com/docker/docker/v17.04.0-ce/api/swagger.yaml || (echo "Failed 1.28 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.28/ https://raw.githubusercontent.com/docker/docker/v17.04.0-ce/api/swagger.yaml || (echo "Failed 1.28 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.29/ https://raw.githubusercontent.com/docker/docker/17.05.x/api/swagger.yaml || (echo "Failed 1.29 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.29/ https://raw.githubusercontent.com/docker/docker/17.05.x/api/swagger.yaml || (echo "Failed 1.29 swagger download" && exit 1)
|
||||||
# New location for swagger.yaml for 17.06+
|
# New location for swagger.yaml for 17.06+
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.30/ https://raw.githubusercontent.com/docker/docker-ce/17.06/components/engine/api/swagger.yaml || (echo "Failed 1.30 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.30/ https://raw.githubusercontent.com/docker/docker-ce/17.06/components/engine/api/swagger.yaml || (echo "Failed 1.30 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.31/ https://raw.githubusercontent.com/docker/docker-ce/17.07/components/engine/api/swagger.yaml || (echo "Failed 1.31 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.31/ https://raw.githubusercontent.com/docker/docker-ce/17.07/components/engine/api/swagger.yaml || (echo "Failed 1.31 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.32/ https://raw.githubusercontent.com/docker/docker-ce/17.09/components/engine/api/swagger.yaml || (echo "Failed 1.32 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.32/ https://raw.githubusercontent.com/docker/docker-ce/17.09/components/engine/api/swagger.yaml || (echo "Failed 1.32 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.33/ https://raw.githubusercontent.com/docker/docker-ce/17.10/components/engine/api/swagger.yaml || (echo "Failed 1.33 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.33/ https://raw.githubusercontent.com/docker/docker-ce/17.10/components/engine/api/swagger.yaml || (echo "Failed 1.33 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.34/ https://raw.githubusercontent.com/docker/docker-ce/17.11/components/engine/api/swagger.yaml || (echo "Failed 1.34 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.34/ https://raw.githubusercontent.com/docker/docker-ce/17.11/components/engine/api/swagger.yaml || (echo "Failed 1.34 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.35/ https://raw.githubusercontent.com/docker/docker-ce/17.12/components/engine/api/swagger.yaml || (echo "Failed 1.35 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.35/ https://raw.githubusercontent.com/docker/docker-ce/17.12/components/engine/api/swagger.yaml || (echo "Failed 1.35 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.36/ https://raw.githubusercontent.com/docker/docker-ce/18.02/components/engine/api/swagger.yaml || (echo "Failed 1.36 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.36/ https://raw.githubusercontent.com/docker/docker-ce/18.02/components/engine/api/swagger.yaml || (echo "Failed 1.36 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.37/ https://raw.githubusercontent.com/docker/docker-ce/18.03/components/engine/api/swagger.yaml || (echo "Failed 1.37 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.37/ https://raw.githubusercontent.com/docker/docker-ce/18.03/components/engine/api/swagger.yaml || (echo "Failed 1.37 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.38/ https://raw.githubusercontent.com/docker/docker-ce/18.06/components/engine/api/swagger.yaml || (echo "Failed 1.38 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.38/ https://raw.githubusercontent.com/docker/docker-ce/18.06/components/engine/api/swagger.yaml || (echo "Failed 1.38 swagger download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/api/v1.39/ https://raw.githubusercontent.com/docker/docker-ce/18.09/components/engine/api/swagger.yaml || (echo "Failed 1.39 swagger download" && exit 1)
|
wget --directory-prefix=./engine/api/v1.39/ https://raw.githubusercontent.com/docker/docker-ce/18.09/components/engine/api/swagger.yaml || (echo "Failed 1.39 swagger download" && exit 1)
|
||||||
|
|
||||||
# Get dockerd.md from upstream
|
# Get dockerd.md from upstream
|
||||||
wget --directory-prefix=${SOURCE}/engine/reference/commandline/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/commandline/dockerd.md || (echo "Failed to fetch stable dockerd.md" && exit 1)
|
wget --directory-prefix=./engine/reference/commandline/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/commandline/dockerd.md || (echo "Failed to fetch stable dockerd.md" && exit 1)
|
||||||
|
|
||||||
# Get a few one-off files that we use directly from upstream
|
# Get a few one-off files that we use directly from upstream
|
||||||
wget --directory-prefix=${SOURCE}/engine/reference/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/builder.md || (echo "Failed engine/reference/builder.md download" && exit 1)
|
wget --directory-prefix=./engine/reference/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/builder.md || (echo "Failed engine/reference/builder.md download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/reference/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/run.md || (echo "Failed engine/reference/run.md download" && exit 1)
|
wget --directory-prefix=./engine/reference/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/run.md || (echo "Failed engine/reference/run.md download" && exit 1)
|
||||||
# Adjust this one when Edge != Stable
|
# Adjust this one when Edge != Stable
|
||||||
wget --directory-prefix=${SOURCE}/edge/engine/reference/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/run.md || (echo "Failed engine/reference/run.md download" && exit 1)
|
wget --directory-prefix=./edge/engine/reference/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/run.md || (echo "Failed engine/reference/run.md download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/reference/commandline/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/commandline/cli.md || (echo "Failed engine/reference/commandline/cli.md download" && exit 1)
|
wget --directory-prefix=./engine/reference/commandline/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/reference/commandline/cli.md || (echo "Failed engine/reference/commandline/cli.md download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/engine/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/deprecated.md || (echo "Failed engine/deprecated.md download" && exit 1)
|
wget --directory-prefix=./engine/ https://raw.githubusercontent.com/docker/docker-ce/"$ENGINE_BRANCH"/components/cli/docs/deprecated.md || (echo "Failed engine/deprecated.md download" && exit 1)
|
||||||
wget --directory-prefix=${SOURCE}/registry/ https://raw.githubusercontent.com/docker/distribution/"$DISTRIBUTION_BRANCH"/docs/configuration.md || (echo "Failed registry/configuration.md download" && exit 1)
|
wget --directory-prefix=./registry/ https://raw.githubusercontent.com/docker/distribution/"$DISTRIBUTION_BRANCH"/docs/configuration.md || (echo "Failed registry/configuration.md download" && exit 1)
|
||||||
|
|
||||||
# Remove things we don't want in the build
|
# Remove things we don't want in the build
|
||||||
rm ${SOURCE}/registry/spec/api.md.tmpl
|
rm ./registry/spec/api.md.tmpl
|
||||||
rm -rf ${SOURCE}/apidocs/cloud-api-source
|
rm -rf ./apidocs/cloud-api-source
|
||||||
rm -rf ${SOURCE}/tests
|
rm -rf ./tests
|
||||||
rm ${SOURCE}/_samples/library/index.md
|
rm ./_samples/library/index.md
|
||||||
|
|
Loading…
Reference in New Issue