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

Add build and push scripts

This commit is contained in:
Tobias L. Maier 2018-04-29 07:23:04 +02:00
parent 8b6988d46d
commit 7a59c5fad8
2 changed files with 21 additions and 0 deletions

11
hooks/build Executable file

@ -0,0 +1,11 @@
#!/usr/bin/env sh
set -e
while read 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

10
hooks/push Executable file

@ -0,0 +1,10 @@
#!/usr/bin/env sh
set -e
images=`docker image ls ${DOCKER_REPO} --format "{{.Repository}}:{{.Tag}}"`;
for image in ${images};
do
docker image push ${image}
done