Files
photoprism/scripts/docker/buildx-multi.sh
2024-11-21 11:21:53 +01:00

108 lines
2.7 KiB
Bash
Executable File

#!/usr/bin/env bash
# https://docs.docker.com/develop/develop-images/build_enhancements/#to-enable-buildkit-builds
export DOCKER_BUILDKIT=1
if [[ -z $1 ]] || [[ -z $2 ]]; then
echo "Usage: ${0##*/} [name] [linux/amd64|linux/arm64|linux/arm] [tag] [/subimage]" 1>&2
exit 1
fi
NUMERIC='^[0-9]+$'
BUILD_DATE=$(/bin/date -u +%y%m%d)
# Remove existing multibuilder.
echo "Removing old multibuilder..."
docker buildx rm multibuilder 2>/dev/null
sleep 3
echo "Done."
# Create new multibuilder and add remote host for native arm builds.
echo "Creating new multibuilder..."
docker buildx create --name multibuilder --use 1>/dev/null || { echo 'buildx: failed to create multibuilder'; exit 1; }
docker buildx create --name multibuilder --append ssh://arm 2>/dev/null || echo 'buildx: failed to add remote host for native arm builds'
echo "Done."
echo "Starting 'photoprism/$1' multi-arch build based on docker/${1/-//}$4/Dockerfile..."
echo "Build Arch: $2"
if [[ $1 ]] && [[ $2 ]] && [[ -z $3 || $3 == "preview" ]]; then
echo "Build Tags: preview"
if [[ $5 ]]; then
echo "Build Params: $5"
fi
docker buildx build \
--platform $2 \
--pull \
--no-cache \
--build-arg BUILD_TAG=$BUILD_DATE \
-f docker/${1/-//}$4/Dockerfile \
-t photoprism/$1:preview $5 \
--push .
elif [[ $3 =~ $NUMERIC ]]; then
echo "Build Tags: $3, latest"
if [[ $5 ]]; then
echo "Build Params: $5"
fi
docker buildx build \
--platform $2 \
--pull \
--no-cache \
--build-arg BUILD_TAG=$3 \
-f docker/${1/-//}$4/Dockerfile \
-t photoprism/$1:latest \
-t photoprism/$1:$3 $5 \
--push .
elif [[ $4 ]] && [[ $3 == *"preview"* || $3 == *"unstable"* || $3 == *"test"* ]]; then
echo "Build Tags: $3"
if [[ $5 ]]; then
echo "Build Params: $5"
fi
docker buildx build \
--platform $2 \
--pull \
--no-cache \
--build-arg BUILD_TAG=$BUILD_DATE \
-f docker/${1/-//}$4/Dockerfile \
-t photoprism/$1:$3 $5 \
--push .
elif [[ $4 ]]; then
echo "Build Tags: $BUILD_DATE-$3, $3"
if [[ $5 ]]; then
echo "Build Params: $5"
fi
docker buildx build \
--platform $2 \
--pull \
--no-cache \
--build-arg BUILD_TAG=$BUILD_DATE-$3 \
-f docker/${1/-//}$4/Dockerfile \
-t photoprism/$1:$3 \
-t photoprism/$1:$BUILD_DATE-$3 $5 \
--push .
else
echo "Build Tags: $3"
docker buildx build \
--platform $2 \
--pull \
--no-cache \
--build-arg BUILD_TAG=$BUILD_DATE \
-f docker/${1/-//}/Dockerfile \
-t photoprism/$1:$3 \
--push .
fi
echo "Removing multibuilder..."
docker buildx rm multibuilder
echo "Done."