2017-06-09 10:14:43 +02:00
|
|
|
#!/bin/bash
|
2021-02-04 21:48:08 +01:00
|
|
|
# Clones the NetBox repository with git from Github and builds the Dockerfile
|
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
|
2022-06-15 08:22:11 +02:00
|
|
|
echo "Usage: ${0} <branch> [--push]"
|
2019-02-01 09:58:07 +01:00
|
|
|
echo " branch The branch or tag to build. Required."
|
2019-10-14 21:54:49 +02:00
|
|
|
echo " --push Pushes the built 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:"
|
2019-10-14 21:54:49 +02:00
|
|
|
echo " SRC_ORG Which fork of netbox to use (i.e. github.com/\${SRC_ORG}/\${SRC_REPO})."
|
|
|
|
echo " Default: netbox-community"
|
|
|
|
echo " SRC_REPO The name of the repository to use (i.e. github.com/\${SRC_ORG}/\${SRC_REPO})."
|
|
|
|
echo " Default: netbox"
|
|
|
|
echo " URL Where to fetch the code from."
|
|
|
|
echo " Must be a git repository. Can be private."
|
|
|
|
echo " Default: https://github.com/\${SRC_ORG}/\${SRC_REPO}.git"
|
|
|
|
echo " NETBOX_PATH The path where netbox will be checkout out."
|
|
|
|
echo " Must not be outside of the netbox-docker repository (because of Docker)!"
|
|
|
|
echo " Default: .netbox"
|
|
|
|
echo " SKIP_GIT If defined, git is not invoked and \${NETBOX_PATH} will not be altered."
|
|
|
|
echo " This may be useful, if you are manually managing the NETBOX_PATH."
|
|
|
|
echo " Default: undefined"
|
|
|
|
echo " TAG The version part of the docker tag."
|
|
|
|
echo " Default:"
|
2019-12-10 21:44:11 +01:00
|
|
|
echo " When <branch>=master: latest"
|
|
|
|
echo " When <branch>=develop: snapshot"
|
|
|
|
echo " Else: same as <branch>"
|
2022-06-15 08:22:11 +02:00
|
|
|
echo " IMAGE_NAMES The names used for the image including the registry"
|
2019-11-17 17:07:02 +01:00
|
|
|
echo " Used for tagging the image."
|
2022-06-15 08:22:11 +02:00
|
|
|
echo " Default: docker.io/netboxcommunity/netbox"
|
|
|
|
echo " Example: 'docker.io/netboxcommunity/netbox quay.io/netboxcommunity/netbox'"
|
2019-10-14 21:54:49 +02:00
|
|
|
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."
|
2019-11-17 17:07:02 +01:00
|
|
|
echo " Default: \${DOCKER_REGISTRY}/\${DOCKER_ORG}/\${DOCKER_REPO}:\${TAG}"
|
2019-10-10 12:42:10 +02:00
|
|
|
echo " DOCKER_SHORT_TAG The name of the short tag which is applied to the"
|
2019-10-14 21:54:49 +02:00
|
|
|
echo " image. This is used to tag all patch releases to their"
|
|
|
|
echo " containing version e.g. v2.5.1 -> v2.5"
|
2019-11-17 17:07:02 +01:00
|
|
|
echo " Default: \${DOCKER_REGISTRY}/\${DOCKER_ORG}/\${DOCKER_REPO}:<MAJOR>.<MINOR>"
|
2019-10-14 21:54:49 +02:00
|
|
|
echo " DOCKERFILE The name of Dockerfile to use."
|
|
|
|
echo " Default: Dockerfile"
|
2019-11-17 17:07:02 +01:00
|
|
|
echo " DOCKER_FROM The base image to use."
|
2022-07-14 22:54:28 +02:00
|
|
|
echo " Default: 'ubuntu:22.04'"
|
2022-06-15 08:22:11 +02:00
|
|
|
echo " BUILDX_PLATFORMS"
|
|
|
|
echo " Specifies the platform(s) to build the image for."
|
|
|
|
echo " Example: 'linux/amd64,linux/arm64'"
|
|
|
|
echo " Default: 'linux/amd64'"
|
|
|
|
echo " BUILDX_BUILDER_NAME"
|
|
|
|
echo " If defined, the image build will be assigned to the given builder."
|
|
|
|
echo " If you specify this variable, make sure that the builder exists."
|
|
|
|
echo " If this value is not defined, a new builx builder with the directory name of the"
|
|
|
|
echo " current directory (i.e. '$(basename "${PWD}")') is created."
|
|
|
|
echo " Example: 'clever_lovelace'"
|
|
|
|
echo " Default: undefined"
|
|
|
|
echo " BUILDX_REMOVE_BUILDER"
|
|
|
|
echo " If defined (and only if BUILDX_BUILDER_NAME is undefined),"
|
|
|
|
echo " then the buildx builder created by this script will be removed after use."
|
|
|
|
echo " This is useful if you build NetBox Docker on an automated system that does"
|
|
|
|
echo " not manage the builders for you."
|
|
|
|
echo " Example: 'on'"
|
|
|
|
echo " Default: undefined"
|
2019-10-14 21:54:49 +02:00
|
|
|
echo " HTTP_PROXY The proxy to use for http requests."
|
|
|
|
echo " Example: http://proxy.domain.tld:3128"
|
|
|
|
echo " Default: undefined"
|
|
|
|
echo " NO_PROXY Comma-separated list of domain extensions proxy should not be used for."
|
|
|
|
echo " Example: .domain1.tld,.domain2.tld"
|
|
|
|
echo " Default: undefined"
|
|
|
|
echo " DEBUG If defined, the script does not stop when certain checks are unsatisfied."
|
|
|
|
echo " Default: undefined"
|
|
|
|
echo " DRY_RUN Prints all build statements instead of running them."
|
|
|
|
echo " Default: undefined"
|
2019-12-23 17:53:19 +01:00
|
|
|
echo " GH_ACTION If defined, special 'echo' statements are enabled that set the"
|
|
|
|
echo " following environment variables in Github Actions:"
|
|
|
|
echo " - FINAL_DOCKER_TAG: The final value of the DOCKER_TAG env variable"
|
|
|
|
echo " Default: undefined"
|
2019-10-14 21:54:49 +02:00
|
|
|
echo ""
|
|
|
|
echo "Examples:"
|
|
|
|
echo " ${0} master"
|
|
|
|
echo " This will fetch the latest 'master' branch, build a Docker Image and tag it"
|
|
|
|
echo " 'netboxcommunity/netbox:latest'."
|
|
|
|
echo " ${0} develop"
|
|
|
|
echo " This will fetch the latest 'develop' branch, build a Docker Image and tag it"
|
|
|
|
echo " 'netboxcommunity/netbox:snapshot'."
|
|
|
|
echo " ${0} v2.6.6"
|
|
|
|
echo " This will fetch the 'v2.6.6' tag, build a Docker Image and tag it"
|
|
|
|
echo " 'netboxcommunity/netbox:v2.6.6' and 'netboxcommunity/netbox:v2.6'."
|
|
|
|
echo " ${0} develop-2.7"
|
|
|
|
echo " This will fetch the 'develop-2.7' branch, build a Docker Image and tag it"
|
|
|
|
echo " 'netboxcommunity/netbox:develop-2.7'."
|
|
|
|
echo " SRC_ORG=cimnine ${0} feature-x"
|
|
|
|
echo " This will fetch the 'feature-x' branch from https://github.com/cimnine/netbox.git,"
|
|
|
|
echo " build a Docker Image and tag it 'netboxcommunity/netbox:feature-x'."
|
|
|
|
echo " SRC_ORG=cimnine DOCKER_ORG=cimnine ${0} feature-x"
|
|
|
|
echo " This will fetch the 'feature-x' branch from https://github.com/cimnine/netbox.git,"
|
|
|
|
echo " build a Docker Image and tag it 'cimnine/netbox:feature-x'."
|
2017-06-09 10:14:43 +02:00
|
|
|
|
|
|
|
if [ "${1}x" == "x" ]; then
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-10-05 10:22:00 +02:00
|
|
|
source ./build-functions/gh-functions.sh
|
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
IMAGE_NAMES="${IMAGE_NAMES-docker.io/netboxcommunity/netbox}"
|
|
|
|
IFS=' ' read -ra IMAGE_NAMES <<<"${IMAGE_NAMES}"
|
|
|
|
|
2019-10-13 16:00:42 +02:00
|
|
|
###
|
2019-12-23 17:53:19 +01:00
|
|
|
# Enabling dry-run mode
|
2019-10-13 16:00:42 +02:00
|
|
|
###
|
2019-10-14 21:54:49 +02:00
|
|
|
if [ -z "${DRY_RUN}" ]; then
|
2019-10-13 16:00:42 +02:00
|
|
|
DRY=""
|
|
|
|
else
|
|
|
|
echo "⚠️ DRY_RUN MODE ON ⚠️"
|
|
|
|
DRY="echo"
|
|
|
|
fi
|
|
|
|
|
2021-10-05 10:22:00 +02:00
|
|
|
gh_echo "::group::⤵️ Fetching the NetBox source code"
|
|
|
|
|
2019-10-10 12:42:10 +02:00
|
|
|
###
|
2021-02-04 21:48:08 +01:00
|
|
|
# Variables for fetching the NetBox source
|
2019-10-10 12:42:10 +02:00
|
|
|
###
|
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}"
|
2019-12-10 21:44:11 +01:00
|
|
|
NETBOX_BRANCH="${1}"
|
2019-10-14 21:54:49 +02:00
|
|
|
URL="${URL-https://github.com/${SRC_ORG}/${SRC_REPO}.git}"
|
2019-11-20 22:25:31 +01:00
|
|
|
NETBOX_PATH="${NETBOX_PATH-.netbox}"
|
2018-02-02 12:48:38 +01:00
|
|
|
|
2019-10-13 16:00:42 +02:00
|
|
|
###
|
2021-02-04 21:48:08 +01:00
|
|
|
# Fetching the NetBox source
|
2019-10-13 16:00:42 +02:00
|
|
|
###
|
2021-02-08 12:16:04 +01:00
|
|
|
if [ "${2}" != "--push-only" ] && [ -z "${SKIP_GIT}" ]; then
|
2021-09-13 09:09:24 +02:00
|
|
|
REMOTE_EXISTS=$(git ls-remote --heads --tags "${URL}" "${NETBOX_BRANCH}" | wc -l)
|
2021-09-13 22:50:06 +02:00
|
|
|
if [ "${REMOTE_EXISTS}" == "0" ]; then
|
2021-09-13 09:09:24 +02:00
|
|
|
echo "❌ Remote branch '${NETBOX_BRANCH}' not found in '${URL}'; Nothing to do"
|
2021-10-05 10:22:00 +02:00
|
|
|
gh_echo "::set-output name=skipped::true"
|
2021-09-13 09:09:24 +02:00
|
|
|
exit 0
|
|
|
|
fi
|
2021-02-04 21:48:08 +01:00
|
|
|
echo "🌐 Checking out '${NETBOX_BRANCH}' of NetBox from the url '${URL}' into '${NETBOX_PATH}'"
|
2019-10-14 21:54:49 +02:00
|
|
|
if [ ! -d "${NETBOX_PATH}" ]; then
|
2019-12-10 21:44:11 +01:00
|
|
|
$DRY git clone -q --depth 10 -b "${NETBOX_BRANCH}" "${URL}" "${NETBOX_PATH}"
|
2019-10-14 21:54:49 +02:00
|
|
|
fi
|
2019-10-13 16:00:42 +02:00
|
|
|
|
|
|
|
(
|
2019-10-14 21:54:49 +02:00
|
|
|
$DRY cd "${NETBOX_PATH}"
|
2021-06-21 13:17:08 +02:00
|
|
|
# shellcheck disable=SC2030
|
2019-10-14 21:54:49 +02:00
|
|
|
if [ -n "${HTTP_PROXY}" ]; then
|
|
|
|
git config http.proxy "${HTTP_PROXY}"
|
|
|
|
fi
|
2019-10-13 16:00:42 +02:00
|
|
|
|
2019-10-14 21:54:49 +02:00
|
|
|
$DRY git remote set-url origin "${URL}"
|
2019-12-10 21:44:11 +01:00
|
|
|
$DRY git fetch -qp --depth 10 origin "${NETBOX_BRANCH}"
|
2019-10-14 21:54:49 +02:00
|
|
|
$DRY git checkout -qf FETCH_HEAD
|
|
|
|
$DRY git prune
|
2019-10-13 16:00:42 +02:00
|
|
|
)
|
2021-02-04 21:48:08 +01:00
|
|
|
echo "✅ Checked out NetBox"
|
2019-10-13 16:00:42 +02:00
|
|
|
fi
|
|
|
|
|
2021-10-05 10:22:00 +02:00
|
|
|
gh_echo "::endgroup::"
|
|
|
|
gh_echo "::group::🧮 Calculating Values"
|
|
|
|
|
2019-10-10 12:42:10 +02:00
|
|
|
###
|
|
|
|
# Determining the value for DOCKERFILE
|
|
|
|
# and checking whether it exists
|
|
|
|
###
|
|
|
|
DOCKERFILE="${DOCKERFILE-Dockerfile}"
|
2019-03-27 12:00:32 +01:00
|
|
|
if [ ! -f "${DOCKERFILE}" ]; then
|
2019-10-10 12:42:10 +02:00
|
|
|
echo "🚨 The Dockerfile ${DOCKERFILE} doesn't exist."
|
2019-03-27 12:00:32 +01:00
|
|
|
|
2019-10-14 21:54:49 +02:00
|
|
|
if [ -z "${DEBUG}" ]; then
|
2019-03-27 12:00:32 +01:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "⚠️ Would exit here with code '1', but DEBUG is enabled."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-04-08 15:45:56 +02:00
|
|
|
###
|
|
|
|
# Determining the value for DOCKER_FROM
|
|
|
|
###
|
2020-05-14 13:50:09 +02:00
|
|
|
if [ -z "$DOCKER_FROM" ]; then
|
2022-07-14 22:54:28 +02:00
|
|
|
DOCKER_FROM="ubuntu:22.04"
|
2020-04-09 10:26:21 +02:00
|
|
|
fi
|
2020-04-08 15:45:56 +02:00
|
|
|
|
2019-11-17 17:07:02 +01:00
|
|
|
###
|
2019-12-23 17:53:19 +01:00
|
|
|
# Variables for labelling the docker image
|
2019-11-17 17:07:02 +01:00
|
|
|
###
|
2019-12-02 21:17:40 +01:00
|
|
|
BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M+00:00')"
|
2019-11-17 17:07:02 +01:00
|
|
|
|
2022-05-25 16:43:23 +02:00
|
|
|
if [ -d ".git" ] && [ -z "${SKIP_GIT}" ]; then
|
2019-11-17 17:07:02 +01:00
|
|
|
GIT_REF="$(git rev-parse HEAD)"
|
|
|
|
fi
|
|
|
|
|
2019-12-23 17:53:19 +01:00
|
|
|
# Read the project version from the `VERSION` file and trim it, see https://stackoverflow.com/a/3232433/172132
|
2019-11-17 17:07:02 +01:00
|
|
|
PROJECT_VERSION="${PROJECT_VERSION-$(sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' VERSION)}"
|
|
|
|
|
|
|
|
# Get the Git information from the netbox directory
|
2022-05-25 16:43:23 +02:00
|
|
|
if [ -d "${NETBOX_PATH}/.git" ] && [ -z "${SKIP_GIT}" ]; then
|
2021-02-08 12:16:04 +01:00
|
|
|
NETBOX_GIT_REF=$(
|
|
|
|
cd "${NETBOX_PATH}"
|
|
|
|
git rev-parse HEAD
|
|
|
|
)
|
|
|
|
NETBOX_GIT_BRANCH=$(
|
|
|
|
cd "${NETBOX_PATH}"
|
|
|
|
git rev-parse --abbrev-ref HEAD
|
|
|
|
)
|
|
|
|
NETBOX_GIT_URL=$(
|
|
|
|
cd "${NETBOX_PATH}"
|
|
|
|
git remote get-url origin
|
|
|
|
)
|
2019-11-17 17:07:02 +01:00
|
|
|
fi
|
|
|
|
|
2019-10-10 12:42:10 +02:00
|
|
|
###
|
2019-12-23 17:53:19 +01:00
|
|
|
# Variables for tagging the docker image
|
2019-10-10 12:42:10 +02:00
|
|
|
###
|
2019-11-17 17:07:02 +01:00
|
|
|
DOCKER_REGISTRY="${DOCKER_REGISTRY-docker.io}"
|
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}"
|
2019-12-10 21:44:11 +01:00
|
|
|
case "${NETBOX_BRANCH}" in
|
2021-02-08 12:16:04 +01:00
|
|
|
master)
|
|
|
|
TAG="${TAG-latest}"
|
|
|
|
;;
|
|
|
|
develop)
|
|
|
|
TAG="${TAG-snapshot}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
TAG="${TAG-$NETBOX_BRANCH}"
|
|
|
|
;;
|
2018-02-02 12:48:38 +01:00
|
|
|
esac
|
|
|
|
|
2019-10-10 14:48:45 +02:00
|
|
|
###
|
2022-06-15 08:22:11 +02:00
|
|
|
# composing the final TARGET_DOCKER_TAG
|
2019-10-10 14:48:45 +02:00
|
|
|
###
|
2022-06-15 08:22:11 +02:00
|
|
|
TARGET_DOCKER_TAG="${DOCKER_TAG-${TAG}}"
|
|
|
|
TARGET_DOCKER_TAG_PROJECT="${TARGET_DOCKER_TAG}-${PROJECT_VERSION}"
|
2019-10-10 14:48:45 +02:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
###
|
|
|
|
# composing the additional DOCKER_SHORT_TAG,
|
|
|
|
# i.e. "v2.6.1" becomes "v2.6",
|
|
|
|
# which is only relevant for version tags
|
|
|
|
# Also let "latest" follow the highest version
|
|
|
|
###
|
|
|
|
if [[ "${TAG}" =~ ^v([0-9]+)\.([0-9]+)\.[0-9]+$ ]]; then
|
|
|
|
MAJOR=${BASH_REMATCH[1]}
|
|
|
|
MINOR=${BASH_REMATCH[2]}
|
|
|
|
|
|
|
|
TARGET_DOCKER_SHORT_TAG="${DOCKER_SHORT_TAG-v${MAJOR}.${MINOR}}"
|
|
|
|
TARGET_DOCKER_LATEST_TAG="latest"
|
|
|
|
TARGET_DOCKER_SHORT_TAG_PROJECT="${TARGET_DOCKER_SHORT_TAG}-${PROJECT_VERSION}"
|
|
|
|
TARGET_DOCKER_LATEST_TAG_PROJECT="${TARGET_DOCKER_LATEST_TAG}-${PROJECT_VERSION}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
IMAGE_NAME_TAGS=()
|
|
|
|
for IMAGE_NAME in "${IMAGE_NAMES[@]}"; do
|
|
|
|
IMAGE_NAME_TAGS+=("${IMAGE_NAME}:${TARGET_DOCKER_TAG}")
|
|
|
|
IMAGE_NAME_TAGS+=("${IMAGE_NAME}:${TARGET_DOCKER_TAG_PROJECT}")
|
|
|
|
done
|
|
|
|
if [ -n "${TARGET_DOCKER_SHORT_TAG}" ]; then
|
|
|
|
for IMAGE_NAME in "${IMAGE_NAMES[@]}"; do
|
|
|
|
IMAGE_NAME_TAGS+=("${IMAGE_NAME}:${TARGET_DOCKER_SHORT_TAG}")
|
|
|
|
IMAGE_NAME_TAGS+=("${IMAGE_NAME}:${TARGET_DOCKER_SHORT_TAG_PROJECT}")
|
|
|
|
IMAGE_NAME_TAGS+=("${IMAGE_NAME}:${TARGET_DOCKER_LATEST_TAG}")
|
|
|
|
IMAGE_NAME_TAGS+=("${IMAGE_NAME}:${TARGET_DOCKER_LATEST_TAG_PROJECT}")
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
gh_env "FINAL_DOCKER_TAG=${IMAGE_NAME_TAGS[0]}"
|
2021-10-05 10:22:00 +02:00
|
|
|
|
2019-10-10 14:48:45 +02:00
|
|
|
###
|
2022-06-15 08:22:11 +02:00
|
|
|
# Checking if the build is necessary,
|
|
|
|
# meaning build only if one of those values changed:
|
|
|
|
# - base image digest
|
|
|
|
# - netbox git ref (Label: netbox.git-ref)
|
|
|
|
# - netbox-docker git ref (Label: org.opencontainers.image.revision)
|
2019-10-10 14:48:45 +02:00
|
|
|
###
|
2022-06-15 08:22:11 +02:00
|
|
|
# Load information from registry (only for docker.io)
|
|
|
|
SHOULD_BUILD="false"
|
|
|
|
BUILD_REASON=""
|
|
|
|
if [ -z "${GH_ACTION}" ]; then
|
|
|
|
# Asuming non Github builds should always proceed
|
|
|
|
SHOULD_BUILD="true"
|
|
|
|
BUILD_REASON="${BUILD_REASON} interactive"
|
|
|
|
elif [[ "${IMAGE_NAME_TAGS[0]}" = docker.io* ]]; then
|
|
|
|
source ./build-functions/get-public-image-config.sh
|
|
|
|
IFS=':' read -ra DOCKER_FROM_SPLIT <<<"${DOCKER_FROM}"
|
|
|
|
if ! [[ ${DOCKER_FROM_SPLIT[0]} =~ .*/.* ]]; then
|
|
|
|
# Need to use "library/..." for images the have no two part name
|
|
|
|
DOCKER_FROM_SPLIT[0]="library/${DOCKER_FROM_SPLIT[0]}"
|
|
|
|
fi
|
|
|
|
IFS='/' read -ra ORG_REPO <<<"${IMAGE_NAMES[0]}"
|
|
|
|
echo "Checking labels for '${ORG_REPO[1]}' and '${ORG_REPO[2]}'"
|
|
|
|
BASE_LAST_LAYER=$(get_image_last_layer "${DOCKER_FROM_SPLIT[0]}" "${DOCKER_FROM_SPLIT[1]}")
|
|
|
|
mapfile -t IMAGES_LAYERS_OLD < <(get_image_layers "${ORG_REPO[1]}"/"${ORG_REPO[2]}" "${TAG}")
|
|
|
|
NETBOX_GIT_REF_OLD=$(get_image_label netbox.git-ref "${ORG_REPO[1]}"/"${ORG_REPO[2]}" "${TAG}")
|
|
|
|
GIT_REF_OLD=$(get_image_label org.opencontainers.image.revision "${ORG_REPO[1]}"/"${ORG_REPO[2]}" "${TAG}")
|
|
|
|
|
|
|
|
if ! printf '%s\n' "${IMAGES_LAYERS_OLD[@]}" | grep -q -P "^${BASE_LAST_LAYER}\$"; then
|
|
|
|
SHOULD_BUILD="true"
|
|
|
|
BUILD_REASON="${BUILD_REASON} debian"
|
|
|
|
fi
|
|
|
|
if [ "${NETBOX_GIT_REF}" != "${NETBOX_GIT_REF_OLD}" ]; then
|
|
|
|
SHOULD_BUILD="true"
|
|
|
|
BUILD_REASON="${BUILD_REASON} netbox"
|
|
|
|
fi
|
|
|
|
if [ "${GIT_REF}" != "${GIT_REF_OLD}" ]; then
|
|
|
|
SHOULD_BUILD="true"
|
|
|
|
BUILD_REASON="${BUILD_REASON} netbox-docker"
|
2018-02-22 14:49:38 +01:00
|
|
|
fi
|
2022-06-15 08:22:11 +02:00
|
|
|
else
|
|
|
|
SHOULD_BUILD="true"
|
|
|
|
BUILD_REASON="${BUILD_REASON} no-check"
|
|
|
|
fi
|
2021-09-17 16:37:23 +02:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
if [ "${SHOULD_BUILD}" != "true" ]; then
|
|
|
|
echo "Build skipped because sources didn't change"
|
|
|
|
echo "::set-output name=skipped::true"
|
|
|
|
exit 0 # Nothing to do -> exit
|
|
|
|
else
|
2021-10-05 10:22:00 +02:00
|
|
|
gh_echo "::set-output name=skipped::false"
|
2022-06-15 08:22:11 +02:00
|
|
|
fi
|
|
|
|
gh_echo "::endgroup::"
|
2018-02-22 14:49:38 +01:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
###
|
|
|
|
# Build the image
|
|
|
|
###
|
|
|
|
gh_echo "::group::🏗 Building the image"
|
|
|
|
###
|
|
|
|
# Composing all arguments for `docker build`
|
|
|
|
###
|
|
|
|
DOCKER_BUILD_ARGS=(
|
|
|
|
--pull
|
|
|
|
--target main
|
|
|
|
-f "${DOCKERFILE}"
|
|
|
|
)
|
|
|
|
for IMAGE_NAME in "${IMAGE_NAME_TAGS[@]}"; do
|
|
|
|
DOCKER_BUILD_ARGS+=(-t "${IMAGE_NAME}")
|
|
|
|
done
|
2017-06-09 10:14:43 +02:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
# --label
|
|
|
|
DOCKER_BUILD_ARGS+=(
|
|
|
|
--label "netbox.original-tag=${TARGET_DOCKER_TAG_PROJECT}"
|
|
|
|
--label "org.opencontainers.image.created=${BUILD_DATE}"
|
|
|
|
--label "org.opencontainers.image.version=${PROJECT_VERSION}"
|
|
|
|
)
|
|
|
|
if [ -d ".git" ] && [ -z "${SKIP_GIT}" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=(
|
|
|
|
--label "org.opencontainers.image.revision=${GIT_REF}"
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
if [ -d "${NETBOX_PATH}/.git" ] && [ -z "${SKIP_GIT}" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=(
|
|
|
|
--label "netbox.git-branch=${NETBOX_GIT_BRANCH}"
|
|
|
|
--label "netbox.git-ref=${NETBOX_GIT_REF}"
|
|
|
|
--label "netbox.git-url=${NETBOX_GIT_URL}"
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
if [ -n "${BUILD_REASON}" ]; then
|
|
|
|
BUILD_REASON=$(sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' <<<"$BUILD_REASON")
|
|
|
|
DOCKER_BUILD_ARGS+=(--label "netbox.build-reason=${BUILD_REASON}")
|
|
|
|
fi
|
2019-10-10 12:42:10 +02:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
# --build-arg
|
|
|
|
DOCKER_BUILD_ARGS+=(--build-arg "NETBOX_PATH=${NETBOX_PATH}")
|
2019-03-27 12:00:32 +01:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
if [ -n "${DOCKER_FROM}" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=(--build-arg "FROM=${DOCKER_FROM}")
|
|
|
|
fi
|
|
|
|
# shellcheck disable=SC2031
|
|
|
|
if [ -n "${HTTP_PROXY}" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=(--build-arg "http_proxy=${HTTP_PROXY}")
|
|
|
|
DOCKER_BUILD_ARGS+=(--build-arg "https_proxy=${HTTPS_PROXY}")
|
|
|
|
fi
|
|
|
|
if [ -n "${NO_PROXY}" ]; then
|
|
|
|
DOCKER_BUILD_ARGS+=(--build-arg "no_proxy=${NO_PROXY}")
|
|
|
|
fi
|
2019-11-17 17:07:02 +01:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
DOCKER_BUILD_ARGS+=(--platform "${BUILDX_PLATFORM-linux/amd64}")
|
|
|
|
if [ "${2}" == "--push" ]; then
|
|
|
|
# output type=docker does not work with pushing
|
|
|
|
DOCKER_BUILD_ARGS+=(
|
|
|
|
--output=type=image
|
|
|
|
--push
|
|
|
|
)
|
|
|
|
else
|
|
|
|
DOCKER_BUILD_ARGS+=(
|
|
|
|
--output=type=docker
|
|
|
|
)
|
|
|
|
fi
|
2019-10-14 21:54:49 +02:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
###
|
|
|
|
# Building the docker image
|
|
|
|
###
|
|
|
|
if [ -z "${BUILDX_BUILDER_NAME}" ]; then
|
|
|
|
BUILDX_BUILDER_NAME="$(basename "${PWD}")"
|
|
|
|
fi
|
|
|
|
if ! docker buildx ls | grep --quiet --word-regexp "${BUILDX_BUILDER_NAME}"; then
|
|
|
|
echo "👷 Creating new Buildx Builder '${BUILDX_BUILDER_NAME}'"
|
|
|
|
$DRY docker buildx create --name "${BUILDX_BUILDER_NAME}"
|
|
|
|
BUILDX_BUILDER_CREATED="yes"
|
|
|
|
fi
|
2019-03-27 12:00:32 +01:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
echo "🐳 Building the Docker image '${TARGET_DOCKER_TAG_PROJECT}'."
|
|
|
|
echo " Build reason set to: ${BUILD_REASON}"
|
|
|
|
$DRY docker buildx \
|
|
|
|
--builder "${BUILDX_BUILDER_NAME}" \
|
|
|
|
build \
|
|
|
|
"${DOCKER_BUILD_ARGS[@]}" \
|
|
|
|
.
|
|
|
|
echo "✅ Finished building the Docker images"
|
|
|
|
gh_echo "::endgroup::" # End group for Build
|
|
|
|
|
|
|
|
gh_echo "::group::🏗 Image Labels"
|
|
|
|
echo "🔎 Inspecting labels on '${IMAGE_NAME_TAGS[0]}'"
|
|
|
|
$DRY docker inspect "${IMAGE_NAME_TAGS[0]}" --format "{{json .Config.Labels}}" | jq
|
|
|
|
gh_echo "::endgroup::"
|
2021-10-05 10:22:00 +02:00
|
|
|
|
2022-06-15 08:22:11 +02:00
|
|
|
gh_echo "::group::🏗 Clean up"
|
|
|
|
if [ -n "${BUILDX_REMOVE_BUILDER}" ] && [ "${BUILDX_BUILDER_CREATED}" == "yes" ]; then
|
|
|
|
echo "👷 Removing Buildx Builder '${BUILDX_BUILDER_NAME}'"
|
|
|
|
$DRY docker buildx rm "${BUILDX_BUILDER_NAME}"
|
|
|
|
fi
|
|
|
|
gh_echo "::endgroup::"
|