mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-22 16:01:59 +01:00
c3599cc962
Past: docker version Now: docker compose version Reasoning: We need to do larger changes to the Dockerfile to support Docker Compose v2
23 lines
446 B
Bash
Executable File
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
|