You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
450 B
Bash
18 lines
450 B
Bash
#!/bin/bash
|
|
#
|
|
# A wrapper that executes the gcloud CLI in a docker container, to avoid
|
|
# requiring a local installation.
|
|
#
|
|
# Adapted from this helpful blog post:
|
|
# https://blog.scottlowe.org/2018/09/13/running-gcloud-cli-in-a-docker-container/
|
|
|
|
GCLOUD_SDK_TAG="312.0.0"
|
|
|
|
exec docker run \
|
|
--rm -it \
|
|
--workdir /code \
|
|
-v $PWD:/code \
|
|
-v $HOME/.config/gcloud:/root/.config/gcloud \
|
|
google/cloud-sdk:$GCLOUD_SDK_TAG \
|
|
gcloud $*
|