mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-22 16:01:59 +01:00
15 lines
313 B
Bash
Executable File
15 lines
313 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
echo "Test Hook is starting"
|
|
|
|
while read -r docker_version compose_version;
|
|
do
|
|
image=${DOCKER_REPO}:${docker_version}
|
|
echo "# Testing image ${image}..."
|
|
export IMAGE_NAME=${image};
|
|
|
|
docker-compose -f docker-compose.test.yml run --rm sut
|
|
done < DOCKER_AND_COMPOSE_VERSION_MATRIX
|