mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-26 05:47:50 +01:00
Add build and push scripts
This commit is contained in:
parent
8b6988d46d
commit
7a59c5fad8
11
hooks/build
Executable file
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
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
|
Loading…
Reference in New Issue
Block a user