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

Introduce image variable in build hook

This commit is contained in:
Tobias L. Maier 2018-04-29 17:37:49 +02:00
parent 9dc6c3ffc6
commit 646cb9ca88

@ -5,8 +5,9 @@ set -e
while read -r docker_version compose_version;
do
echo "# Building image ${image}..."
image=${DOCKER_REPO}:${docker_version}
docker build \
--build-arg DOCKER_VERSION="${docker_version}" \
--build-arg COMPOSE_VERSION="${compose_version}" \
-t "${DOCKER_REPO}:${docker_version}" .
-t "${image}" .
done < DOCKER_AND_COMPOSE_VERSION_MATRIX