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

12 lines
227 B
Plaintext
Raw Normal View History

2018-04-29 07:28:01 +02:00
#!/usr/bin/env sh
set -e
images=$(docker image ls "${DOCKER_REPO}" --format "{{.Repository}}:{{.Tag}}");
2018-04-29 07:28:01 +02:00
for image in ${images};
do
export IMAGE_NAME=${image};
docker-compose -f docker-compose.test.yml --rm run sut
done