Remove references to `cli` images (#611)

CI builds on master have been failing to publish `cli-bin` images because the
`docker-push` script still refers to the `cli` image, though it was removed in
e7c4a9d4b9.

This change removes references to the `cli` image from all scripts.
This commit is contained in:
Oliver Gould 2018-03-25 09:46:34 -07:00 committed by GitHub
parent 12c6531546
commit c5179ba10b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 24 deletions

View File

@ -16,11 +16,8 @@ docker_image() {
tag=$(head_root_tag)
docker_image controller "${tag}"
docker_image proxy "${tag}"
docker_image proxy-init "${tag}"
docker_image web "${tag}"
docker_image cli "${tag}"
docker_image cli-bin "${tag}"
for img in proxy proxy-init controller web cli-bin ; do
docker_image "$img" "$tag"
done
docker_image go-deps "$(go_deps_sha)"

View File

@ -13,9 +13,6 @@ bindir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
. $bindir/_docker.sh
docker_pull proxy "${tag}" || true
docker_pull proxy-init "${tag}" || true
docker_pull controller "${tag}" || true
docker_pull web "${tag}" || true
docker_pull cli "${tag}" || true
docker_pull cli-bin "${tag}" || true
for img in proxy proxy-init controller web cli-bin ; do
docker_pull "$img" "$tag"
done

View File

@ -13,9 +13,6 @@ bindir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
. $bindir/_docker.sh
docker_push proxy "${tag}"
docker_push proxy-init "${tag}"
docker_push controller "${tag}"
docker_push web "${tag}"
docker_push cli "${tag}"
docker_push cli-bin "${tag}"
for img in proxy proxy-init controller web cli-bin ; do
docker_push "$img" "$tag"
done

View File

@ -13,9 +13,6 @@ bindir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
. $bindir/_docker.sh
docker_retag proxy "$from" "$to"
docker_retag proxy-init "$from" "$to"
docker_retag controller "$from" "$to"
docker_retag web "$from" "$to"
docker_retag cli "$from" "$to"
docker_retag cli-bin "$from" "$to"
for img in proxy proxy-init controller web cli-bin ; do
docker_retag "$img" "$from" "$to"
done