Test trigger of cloudbuild for nginx image

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-06-25 14:37:10 -04:00
parent 37c1ca4cac
commit 70a9eb569c
2 changed files with 9 additions and 1 deletions

View file

@ -24,6 +24,11 @@ set -o pipefail
export DOCKER_CLI_EXPERIMENTAL=enabled
if ! docker buildx 2>&1 >/dev/null; then
echo "buildx not available. Docker 19.03 or higher is required with experimental features enabled"
exit 1
fi
# We can skip setup if the current builder already has multi-arch
# AND if it isn't the docker driver, which doesn't work
current_builder="$(docker buildx inspect)"