1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 16:01:59 +01:00
github.com-tmaier-docker-co.../hooks/build

23 lines
446 B
Plaintext
Raw Normal View History

2018-04-29 07:23:04 +02:00
#!/usr/bin/env sh
set -e
2018-04-29 07:23:04 +02:00
while read -r docker_version compose_version;
2018-04-29 07:23:04 +02:00
do
if [ -z "${compose_version}" ]
then
tag="latest"
else
tag="${compose_version%.*}"
fi
image=${DOCKER_REPO}:${tag}
2018-04-29 17:41:20 +02:00
echo "# Building image ${image}..."
2018-04-29 07:23:04 +02:00
docker build \
--build-arg DOCKER_VERSION="${docker_version}" \
--build-arg COMPOSE_VERSION="${compose_version}" \
--pull \
2018-04-29 17:37:49 +02:00
-t "${image}" .
2018-04-29 07:23:04 +02:00
done < DOCKER_AND_COMPOSE_VERSION_MATRIX