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
Tobias L. Maier d8736a5795 Improve shell syntax
ShellCheck syntax errors SC2006, SC2162, SC2086
2018-04-29 17:33:00 +02:00

12 lines
286 B
Bash
Executable File

#!/usr/bin/env sh
set -e
while read -r docker_version compose_version;
do
docker build \
--build-arg DOCKER_VERSION="${docker_version}" \
--build-arg COMPOSE_VERSION="${compose_version}" \
-t "${DOCKER_REPO}:${docker_version}" .
done < DOCKER_AND_COMPOSE_VERSION_MATRIX