mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-26 05:47:50 +01:00
11 lines
166 B
Bash
Executable File
11 lines
166 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
|