mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-26 05:47:50 +01:00
Introduce image variable in build hook
This commit is contained in:
parent
9dc6c3ffc6
commit
646cb9ca88
@ -5,8 +5,9 @@ set -e
|
|||||||
while read -r docker_version compose_version;
|
while read -r docker_version compose_version;
|
||||||
do
|
do
|
||||||
echo "# Building image ${image}..."
|
echo "# Building image ${image}..."
|
||||||
|
image=${DOCKER_REPO}:${docker_version}
|
||||||
docker build \
|
docker build \
|
||||||
--build-arg DOCKER_VERSION="${docker_version}" \
|
--build-arg DOCKER_VERSION="${docker_version}" \
|
||||||
--build-arg COMPOSE_VERSION="${compose_version}" \
|
--build-arg COMPOSE_VERSION="${compose_version}" \
|
||||||
-t "${DOCKER_REPO}:${docker_version}" .
|
-t "${image}" .
|
||||||
done < DOCKER_AND_COMPOSE_VERSION_MATRIX
|
done < DOCKER_AND_COMPOSE_VERSION_MATRIX
|
||||||
|
Loading…
Reference in New Issue
Block a user