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/test

13 lines
270 B
Plaintext
Raw Normal View History

2018-04-29 07:28:01 +02:00
#!/usr/bin/env sh
2018-04-29 18:44:46 +02:00
set -ex
2018-04-29 07:28:01 +02:00
while read -r docker_version _;
2018-04-29 07:28:01 +02:00
do
image=${DOCKER_REPO}:${docker_version}
2018-04-29 17:37:39 +02:00
echo "# Testing image ${image}..."
2018-04-29 07:28:01 +02:00
export IMAGE_NAME=${image};
2018-04-29 18:34:06 +02:00
docker-compose -f docker-compose.test.yml run --rm sut
done < DOCKER_AND_COMPOSE_VERSION_MATRIX