1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-23 00:12:00 +01:00
github.com-tmaier-docker-co.../hooks/push

13 lines
231 B
Plaintext
Raw Normal View History

2018-04-29 07:23:04 +02:00
#!/usr/bin/env sh
set -e
images=$(docker image ls "${DOCKER_REPO}" --format "{{.Repository}}:{{.Tag}}");
2018-04-29 07:23:04 +02:00
for image in ${images};
do
2018-04-29 17:37:39 +02:00
echo "# Pushing image ${image}..."
docker image push "${image}"
2018-04-29 17:38:45 +02:00
echo "Exit code: $?"
2018-04-29 07:23:04 +02:00
done