mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-26 05:47:50 +01:00
12 lines
228 B
Bash
Executable File
12 lines
228 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -ex
|
|
|
|
while read -r docker_version compose_version;
|
|
do
|
|
image=${DOCKER_REPO}:${docker_version}
|
|
echo "# Pushing image ${image}..."
|
|
|
|
docker image push "${image}"
|
|
done < DOCKER_AND_COMPOSE_VERSION_MATRIX
|