1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 16:01:59 +01:00

Improve shell syntax

ShellCheck syntax errors SC2006, SC2162, SC2086
This commit is contained in:
Tobias L. Maier 2018-04-29 17:29:44 +02:00
parent e12ce4e9ed
commit d8736a5795
3 changed files with 7 additions and 7 deletions

@ -2,10 +2,10 @@
set -e
while read docker_version compose_version;
while read -r docker_version compose_version;
do
docker build \
--build-arg DOCKER_VERSION=${docker_version} \
--build-arg COMPOSE_VERSION=${compose_version} \
-t $DOCKER_REPO:${docker_version} .
--build-arg DOCKER_VERSION="${docker_version}" \
--build-arg COMPOSE_VERSION="${compose_version}" \
-t "${DOCKER_REPO}:${docker_version}" .
done < DOCKER_AND_COMPOSE_VERSION_MATRIX

@ -2,9 +2,9 @@
set -e
images=`docker image ls ${DOCKER_REPO} --format "{{.Repository}}:{{.Tag}}"`;
images=$(docker image ls "${DOCKER_REPO}" --format "{{.Repository}}:{{.Tag}}");
for image in ${images};
do
docker image push ${image}
docker image push "${image}"
done

@ -2,7 +2,7 @@
set -e
images=`docker image ls ${DOCKER_REPO} --format "{{.Repository}}:{{.Tag}}"`;
images=$(docker image ls "${DOCKER_REPO}" --format "{{.Repository}}:{{.Tag}}");
for image in ${images};
do