1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 16:01:59 +01:00

Add echos of different stages

This commit is contained in:
Tobias L. Maier 2018-04-29 17:37:39 +02:00
parent d8736a5795
commit 9dc6c3ffc6
3 changed files with 3 additions and 0 deletions

@ -4,6 +4,7 @@ set -e
while read -r docker_version compose_version;
do
echo "# Building image ${image}..."
docker build \
--build-arg DOCKER_VERSION="${docker_version}" \
--build-arg COMPOSE_VERSION="${compose_version}" \

@ -6,5 +6,6 @@ images=$(docker image ls "${DOCKER_REPO}" --format "{{.Repository}}:{{.Tag}}");
for image in ${images};
do
echo "# Pushing image ${image}..."
docker image push "${image}"
done

@ -6,6 +6,7 @@ images=$(docker image ls "${DOCKER_REPO}" --format "{{.Repository}}:{{.Tag}}");
for image in ${images};
do
echo "# Testing image ${image}..."
export IMAGE_NAME=${image};
docker-compose -f docker-compose.test.yml --rm run sut
done