2017-06-09 10:14:43 +02:00
|
|
|
#!/bin/bash
|
2018-03-05 14:29:24 +01:00
|
|
|
# Builds the Dockerfile[.variant] and injects tgz'ed Netbox code from Github
|
2017-06-09 10:14:43 +02:00
|
|
|
|
2018-04-10 10:58:31 +02:00
|
|
|
echo "▶️ $0 $*"
|
2018-04-10 11:42:06 +02:00
|
|
|
|
2017-06-09 10:14:43 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ "${1}x" == "x" ] || [ "${1}" == "--help" ] || [ "${1}" == "-h" ]; then
|
2019-02-01 09:58:07 +01:00
|
|
|
echo "Usage: ${0} <branch> [--push|--push-only]"
|
|
|
|
echo " branch The branch or tag to build. Required."
|
|
|
|
echo " --push Pushes built the Docker image to the registry."
|
|
|
|
echo " --push-only Does not build. Only pushes the Docker image to the registry."
|
2017-06-09 10:14:43 +02:00
|
|
|
echo ""
|
|
|
|
echo "You can use the following ENV variables to customize the build:"
|
2018-03-05 14:30:30 +01:00
|
|
|
echo " DEBUG If defined, the script does not stop when certain checks are unsatisfied."
|
|
|
|
echo " DRY_RUN Prints all build statements instead of running them."
|
2018-02-02 12:48:38 +01:00
|
|
|
echo " DOCKER_OPTS Add parameters to Docker."
|
|
|
|
echo " Default:"
|
|
|
|
echo " When <TAG> starts with 'v': \"\""
|
|
|
|
echo " Else: \"--no-cache\""
|
2017-06-09 10:14:43 +02:00
|
|
|
echo " BRANCH The branch to build."
|
|
|
|
echo " Also used for tagging the image."
|
2018-02-02 12:48:38 +01:00
|
|
|
echo " TAG The version part of the docker tag."
|
|
|
|
echo " Default:"
|
|
|
|
echo " When <BRANCH>=master: latest"
|
|
|
|
echo " When <BRANCH>=develop: snapshot"
|
|
|
|
echo " Else: same as <BRANCH>"
|
|
|
|
echo " DOCKER_ORG The Docker registry (i.e. hub.docker.com/r/<DOCKER_ORG>/<DOCKER_REPO>) "
|
2017-09-11 15:30:52 +02:00
|
|
|
echo " Also used for tagging the image."
|
2019-02-06 11:46:20 +01:00
|
|
|
echo " Default: netboxcommunity"
|
2018-02-02 12:48:38 +01:00
|
|
|
echo " DOCKER_REPO The Docker registry (i.e. hub.docker.com/r/<DOCKER_ORG>/<DOCKER_REPO>) "
|
|
|
|
echo " Also used for tagging the image."
|
|
|
|
echo " Default: netbox"
|
|
|
|
echo " DOCKER_TAG The name of the tag which is applied to the image."
|
|
|
|
echo " Useful for pushing into another registry than hub.docker.com."
|
|
|
|
echo " Default: <DOCKER_ORG>/<DOCKER_REPO>:<BRANCH>"
|
2019-03-20 14:03:18 +01:00
|
|
|
echo " DOCKER_SHORT_TAG The name of the short tag which is applied to the image."
|
|
|
|
echo " This is used to tag all patch releases to their containing version e.g. v2.5.1 -> v2.5"
|
|
|
|
echo " Default: <DOCKER_ORG>/<DOCKER_REPO>:\$MAJOR.\$MINOR"
|
2018-02-02 12:48:38 +01:00
|
|
|
echo " SRC_ORG Which fork of netbox to use (i.e. github.com/<SRC_ORG>/<SRC_REPO>)."
|
2019-07-02 21:32:58 +02:00
|
|
|
echo " Default: netbox-community"
|
2018-02-02 12:48:38 +01:00
|
|
|
echo " SRC_REPO The name of the netbox for to use (i.e. github.com/<SRC_ORG>/<SRC_REPO>)."
|
|
|
|
echo " Default: netbox"
|
2017-06-09 10:14:43 +02:00
|
|
|
echo " URL Where to fetch the package from."
|
|
|
|
echo " Must be a tar.gz file of the source code."
|
2018-02-02 12:48:38 +01:00
|
|
|
echo " Default: https://github.com/<SRC_ORG>/<SRC_REPO>/archive/\$BRANCH.tar.gz"
|
2018-02-22 14:49:38 +01:00
|
|
|
echo " VARIANT The variant to build."
|
2018-03-05 14:35:11 +01:00
|
|
|
echo " The value will be used as a suffix to the \$TAG and for the Dockerfile"
|
|
|
|
echo " selection. The TAG being build must exist for the base variant and"
|
|
|
|
echo " corresponding Dockerfile must start with the following lines:"
|
2019-02-06 11:46:20 +01:00
|
|
|
echo " ARG DOCKER_ORG=netboxcommunity"
|
2018-03-05 16:38:30 +01:00
|
|
|
echo " ARG DOCKER_REPO=netbox"
|
2018-02-22 14:49:38 +01:00
|
|
|
echo " ARG FROM_TAG=latest"
|
2018-03-05 14:35:11 +01:00
|
|
|
echo " FROM \$DOCKER_ORG/\$DOCKER_REPO:\$FROM_TAG"
|
|
|
|
echo " Example: VARIANT=ldap will result in the tag 'latest-ldap' and the"
|
2019-02-01 09:58:07 +01:00
|
|
|
echo " Dockerfile './Dockerfile.ldap' being used."
|
|
|
|
echo " Exception: VARIANT=main will use the './Dockerfile' Dockerfile"
|
|
|
|
echo " Default: main"
|
2018-04-03 22:32:59 +02:00
|
|
|
echo " HTTP_PROXY The proxy to use for http requests."
|
|
|
|
echo " Example: http://proxy.domain.tld:3128"
|
|
|
|
echo " Default: empty"
|
|
|
|
echo " HTTPS_PROXY The proxy to use for https requests."
|
|
|
|
echo " Example: http://proxy.domain.tld:3128"
|
|
|
|
echo " Default: empty"
|
|
|
|
echo " FTP_PROXY The proxy to use for ftp requests."
|
|
|
|
echo " Example: http://proxy.domain.tld:3128"
|
|
|
|
echo " Default: empty"
|
|
|
|
echo " NO_PROXY Comma-separated list of domain extensions proxy should not be used for."
|
|
|
|
echo " Example: .domain1.tld,.domain2.tld"
|
|
|
|
echo " Default: empty"
|
2017-06-09 10:14:43 +02:00
|
|
|
|
|
|
|
if [ "${1}x" == "x" ]; then
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-04-04 09:44:58 +02:00
|
|
|
# read the project version and trim it
|
|
|
|
# see https://stackoverflow.com/a/3232433/172132
|
|
|
|
NETBOX_DOCKER_PROJECT_VERSION="${NETBOX_DOCKER_PROJECT_VERSION-$(sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' VERSION)}"
|
|
|
|
|
2018-02-02 12:48:38 +01:00
|
|
|
# variables for fetching the source
|
2019-07-02 21:32:58 +02:00
|
|
|
SRC_ORG="${SRC_ORG-netbox-community}"
|
2018-02-02 12:48:38 +01:00
|
|
|
SRC_REPO="${SRC_REPO-netbox}"
|
2017-06-09 10:14:43 +02:00
|
|
|
BRANCH="${1}"
|
2018-02-02 12:48:38 +01:00
|
|
|
URL="${URL-https://github.com/${SRC_ORG}/${SRC_REPO}/archive/$BRANCH.tar.gz}"
|
|
|
|
|
2019-03-27 12:00:32 +01:00
|
|
|
# Checking which VARIANT to build
|
|
|
|
VARIANT="${VARIANT-main}"
|
|
|
|
if [ "$VARIANT" == "main" ]; then
|
|
|
|
DOCKERFILE="Dockerfile"
|
|
|
|
else
|
|
|
|
DOCKERFILE="Dockerfile.${VARIANT}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Fail fast
|
|
|
|
if [ ! -f "${DOCKERFILE}" ]; then
|
|
|
|
echo "🚨 The Dockerfile ${DOCKERFILE} for variant '${VARIANT}' doesn't exist."
|
|
|
|
|
|
|
|
if [ -z "$DEBUG" ]; then
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "⚠️ Would exit here with code '1', but DEBUG is enabled."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-02-02 12:48:38 +01:00
|
|
|
# variables for tagging the docker image
|
2019-02-06 11:46:20 +01:00
|
|
|
DOCKER_ORG="${DOCKER_ORG-netboxcommunity}"
|
2018-02-02 12:48:38 +01:00
|
|
|
DOCKER_REPO="${DOCKER_REPO-netbox}"
|
|
|
|
case "${BRANCH}" in
|
|
|
|
master)
|
|
|
|
TAG="${TAG-latest}";;
|
|
|
|
develop)
|
|
|
|
TAG="${TAG-snapshot}";;
|
|
|
|
*)
|
|
|
|
TAG="${TAG-$BRANCH}";;
|
|
|
|
esac
|
|
|
|
|
2019-03-27 12:00:32 +01:00
|
|
|
DOCKER_TAG="${DOCKER_TAG-${DOCKER_ORG}/${DOCKER_REPO}:${TAG}}"
|
|
|
|
if [ "$VARIANT" != "main" ]; then
|
2018-02-22 14:49:38 +01:00
|
|
|
DOCKER_TAG="${DOCKER_TAG}-${VARIANT}"
|
2019-03-27 12:00:32 +01:00
|
|
|
fi
|
2018-03-05 14:30:30 +01:00
|
|
|
|
2019-03-27 12:00:32 +01:00
|
|
|
if [[ "${TAG}" =~ ^v([0-9]+)\.([0-9]+)\.[0-9]+$ ]]; then
|
|
|
|
MAJOR=${BASH_REMATCH[1]}
|
|
|
|
MINOR=${BASH_REMATCH[2]}
|
2018-03-05 14:30:30 +01:00
|
|
|
|
2019-03-27 12:00:32 +01:00
|
|
|
DOCKER_SHORT_TAG="${DOCKER_SHORT_TAG-${DOCKER_ORG}/${DOCKER_REPO}:v${MAJOR}.${MINOR}}"
|
|
|
|
|
|
|
|
if [ "$VARIANT" != "main" ]; then
|
|
|
|
DOCKER_SHORT_TAG="${DOCKER_SHORT_TAG}-${VARIANT}"
|
2018-02-22 14:49:38 +01:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-03-05 16:29:02 +01:00
|
|
|
DOCKER_OPTS=("${DOCKER_OPTS[@]}")
|
|
|
|
|
|
|
|
# caching is only ok for version tags
|
|
|
|
case "${TAG}" in
|
2019-02-01 09:58:07 +01:00
|
|
|
v*) ;;
|
|
|
|
*) DOCKER_OPTS+=( "--no-cache" ) ;;
|
2018-03-05 16:29:02 +01:00
|
|
|
esac
|
|
|
|
|
|
|
|
DOCKER_OPTS+=( "--pull" )
|
2018-03-05 14:29:24 +01:00
|
|
|
|
|
|
|
# Build args
|
|
|
|
DOCKER_BUILD_ARGS=(
|
2018-04-04 09:44:58 +02:00
|
|
|
--build-arg "NETBOX_DOCKER_PROJECT_VERSION=${NETBOX_DOCKER_PROJECT_VERSION}"
|
2018-03-05 14:29:24 +01:00
|
|
|
--build-arg "FROM_TAG=${TAG}"
|
|
|
|
--build-arg "BRANCH=${BRANCH}"
|
|
|
|
--build-arg "URL=${URL}"
|
2018-03-05 14:35:11 +01:00
|
|
|
--build-arg "DOCKER_ORG=${DOCKER_ORG}"
|
|
|
|
--build-arg "DOCKER_REPO=${DOCKER_REPO}"
|
2018-03-05 14:29:24 +01:00
|
|
|
)
|
2018-04-03 22:32:59 +02:00
|
|
|
if [ -n "$HTTP_PROXY" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=( --build-arg "http_proxy=${HTTP_PROXY}" )
|
|
|
|
fi
|
|
|
|
if [ -n "$HTTPS_PROXY" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=( --build-arg "https_proxy=${HTTPS_PROXY}" )
|
|
|
|
fi
|
|
|
|
if [ -n "$FTP_PROXY" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=( --build-arg "ftp_proxy=${FTP_PROXY}" )
|
|
|
|
fi
|
|
|
|
if [ -n "$NO_PROXY" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=( --build-arg "no_proxy=${NO_PROXY}" )
|
|
|
|
fi
|
2018-03-05 14:29:24 +01:00
|
|
|
|
|
|
|
if [ -z "$DRY_RUN" ]; then
|
|
|
|
DOCKER_CMD="docker"
|
|
|
|
else
|
|
|
|
echo "⚠️ DRY_RUN MODE ON ⚠️"
|
|
|
|
DOCKER_CMD="echo docker"
|
|
|
|
fi
|
2017-06-09 10:14:43 +02:00
|
|
|
|
2019-02-01 09:58:07 +01:00
|
|
|
if [ "${2}" != "--push-only" ] ; then
|
|
|
|
echo "🐳 Building the Docker image '${DOCKER_TAG}' from the url '${URL}'."
|
|
|
|
$DOCKER_CMD build -t "${DOCKER_TAG}" "${DOCKER_BUILD_ARGS[@]}" "${DOCKER_OPTS[@]}" -f "${DOCKERFILE}" .
|
|
|
|
echo "✅ Finished building the Docker images '${DOCKER_TAG}'"
|
2019-03-27 12:00:32 +01:00
|
|
|
|
|
|
|
if [ -n "$DOCKER_SHORT_TAG" ]; then
|
|
|
|
echo "🐳 Tagging image '${DOCKER_SHORT_TAG}'."
|
|
|
|
$DOCKER_CMD tag "${DOCKER_TAG}" "${DOCKER_SHORT_TAG}"
|
|
|
|
echo "✅ Tagged image '${DOCKER_SHORT_TAG}'"
|
|
|
|
fi
|
2019-02-01 09:58:07 +01:00
|
|
|
fi
|
2017-06-09 10:14:43 +02:00
|
|
|
|
2019-02-01 09:58:07 +01:00
|
|
|
if [ "${2}" == "--push" ] || [ "${2}" == "--push-only" ] ; then
|
2018-02-02 12:48:38 +01:00
|
|
|
echo "⏫ Pushing '${DOCKER_TAG}"
|
2018-03-05 14:29:24 +01:00
|
|
|
$DOCKER_CMD push "${DOCKER_TAG}"
|
2018-02-02 12:48:38 +01:00
|
|
|
echo "✅ Finished pushing the Docker image '${DOCKER_TAG}'."
|
2019-03-27 12:00:32 +01:00
|
|
|
|
|
|
|
if [ -n "$DOCKER_SHORT_TAG" ]; then
|
2019-03-20 14:03:18 +01:00
|
|
|
echo "⏫ Pushing '${DOCKER_SHORT_TAG}'"
|
|
|
|
$DOCKER_CMD push "${DOCKER_SHORT_TAG}"
|
|
|
|
echo "✅ Finished pushing the Docker image '${DOCKER_SHORT_TAG}'."
|
|
|
|
fi
|
2017-06-09 10:14:43 +02:00
|
|
|
fi
|