mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-22 16:01:59 +01:00
14 lines
341 B
Bash
Executable File
14 lines
341 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
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 "${image}" .
|
|
done < DOCKER_AND_COMPOSE_VERSION_MATRIX
|