1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 07:51:58 +01:00
github.com-tmaier-docker-co.../hooks/build
Tobias Ludwig Maier c3599cc962 Change approach for tagging the docker image
Past: docker version
Now: docker compose version

Reasoning: We need to do larger changes to the Dockerfile to support Docker Compose v2
2022-11-01 02:29:23 +01:00

23 lines
446 B
Bash
Executable File

#!/usr/bin/env sh
set -e
while read -r docker_version compose_version;
do
if [ -z "${compose_version}" ]
then
tag="latest"
else
tag="${compose_version%.*}"
fi
image=${DOCKER_REPO}:${tag}
echo "# Building image ${image}..."
docker build \
--build-arg DOCKER_VERSION="${docker_version}" \
--build-arg COMPOSE_VERSION="${compose_version}" \
--pull \
-t "${image}" .
done < DOCKER_AND_COMPOSE_VERSION_MATRIX