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/push
Tobias L. Maier d8736a5795 Improve shell syntax
ShellCheck syntax errors SC2006, SC2162, SC2086
2018-04-29 17:33:00 +02:00

11 lines
171 B
Bash
Executable File

#!/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