I am a bit confused about how I can authenticate the gcloud sdk on a docker container. Right now, my docker file includes the following:
#Install the google SDK
RUN curl https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz > /tmp/google-cloud-sdk.tar.gz
RUN mkdir -p /usr/local/gcloud
RUN tar -C /usr/local/gcloud -xvf /tmp/google-cloud-sdk.tar.gz
RUN /usr/local/gcloud/google-cloud-sdk/install.sh
RUN /usr/local/gcloud/google-cloud-sdk/bin/gcloud init
However, I am confused how I would authenticate? When I run gcloud auth application-default login
on my machine, it opens a new tab in chrome which prompts me to login. How would I input my credentials on the docker container if it opens a new tab in google chrome in the container?
You might consider using deb packages when setting up your docker container as it is done on docker hub.
That said you should NOT run
gcloud init
orgcloud auth application-default login
orgcloud auth login
... those are interactive commands which launch browser. To provide credentials to the container supply it with service account key file.You can download one from cloud console: https://console.cloud.google.com/iam-admin/serviceaccounts/project?project=YOUR_PROJECT or create it with
gcloud
commandsee reference guide.
Either way once you have the key file ADD it to your container and run
You should be now set, but if you want to use it as Application Default Credentials (ADC), that is in the context of other libraries and tools, you need to set the following environment variable to point to the key file:
One thing to point out here is that
gcloud
tool does not use ADC, so later if you change your account to something else, for example viaother tools and libraries will continue using old account via ADC key file but
gcloud
will now use different account.You can map your local Google SDK credentials into the image. [Source].
Begin by signing in using:
Then add the following to your docker-compose.yaml: