Google Cloud CLI Docker

Google Cloud CLI Docker Image - 包含 gcloud CLI 及其捆绑组件的 Docker Image。「Google Cloud CLI Docker Image - Docker Image containing the gcloud CLI and its bundled components.」

Github星跟蹤圖

Google Cloud SDK Docker

This is Docker image for the Google Cloud SDK.

The :latest tag of this image is Debian-based and includes default command
line tools of Google Cloud SDK (gcloud, gsutil, bq) as well as all
additional components.

Repositories

The Google Cloud SDK Docker Image is hosted on both Container Registry and Docker Hub.

The full repository name for Container Registry is gcr.io/google.com/cloudsdktool/cloud-sdk.

The full repository name for Docker Hub is google/cloud-sdk.

Supported tags

  • :latest, :VERSION: (large image with
    additional components pre-installed, Debian-based)
  • :slim, :VERSION-slim: (smaller image with
    no components pre-installed, Debian-based)
  • :alpine, :VERSION-alpine: (smallest image
    with no additional components installed, Alpine-based)

→ Check out Container Registry for available tags.

Docker Pulls
Docker Build Status
Docker Automated buil

Usage

To use this image, pull from Container Registry and then run the following command:

docker pull gcr.io/google.com/cloudsdktool/cloud-sdk:latest

(Note: To pull from Docker Hub, replace all instances of gcr.io/google.com/cloudsdktool/cloud-sdk with google/cloud-sdk.)

Verify the install

docker run gcr.io/google.com/cloudsdktool/cloud-sdk:latest gcloud version
Google Cloud SDK 159.0.0

or use a particular version number:

docker run gcr.io/google.com/cloudsdktool/cloud-sdk:260.0.0 gcloud version

Then, authenticate by running:

docker run -ti --name gcloud-config gcr.io/google.com/cloudsdktool/cloud-sdk gcloud auth login

Once you authenticate successfully, credentials are preserved in the volume of
the gcloud-config container.

To list compute instances using these credentials, run the container with
--volumes-from:

docker run --rm --volumes-from gcloud-config gcr.io/google.com/cloudsdktool/cloud-sdk gcloud compute instances list --project your_project
NAME        ZONE           MACHINE_TYPE   PREEMPTIBLE  INTERNAL_IP  EXTERNAL_IP      STATUS
instance-1  us-central1-a  n1-standard-1               10.240.0.2   8.34.219.29      RUNNING

:warning: Warning: The gcloud-config container now has a volume
containing your Google Cloud credentials. Do not use gcloud-config volume in
other containers.

Alternatively, you can use use auth/credential_file_override property to set a path to a mounted service account
and then the config to read that using CLOUDSDK_CONFIG environment variable.

for example, mycloud configuration below has the auth/credential_file_override already set and points towards a certificate file
that will be present within the container as a separate volume mount.

See issue#152

$ docker run -ti -e CLOUDSDK_CONFIG=/config/mygcloud \
                 -v `pwd`/mygcloud:/config/mygcloud \
                 -v `pwd`:/certs  gcr.io/google.com/cloudsdktool/cloud-sdk:alpine /bin/bash

bash-4.4# gcloud config list
[auth]
credential_file_override = /certs/svc_account.json

bash-4.4# head -10  /certs/svc_account.json
{
  "type": "service_account",
  "project_id": "project_id1",
....

bash-4.4# gcloud projects list
PROJECT_ID           NAME         PROJECT_NUMBER
project_id1          GCPAppID     1071284184432

Installing additional components

By default, all gcloud components
are
installed on the default
images (gcr.io/google.com/cloudsdktool/cloud-sdk:latest and gcr.io/google.com/cloudsdktool/cloud-sdk:VERSION).

The gcr.io/google.com/cloudsdktool/cloud-sdk:slim and gcr.io/google.com/cloudsdktool/cloud-sdk:alpine images do not contain
additional components pre-installed. You can extend these images by following
the instructions below:

Debian-based images

cd debian_slim/
docker build --build-arg CLOUD_SDK_VERSION=159.0.0 \
    --build-arg INSTALL_COMPONENTS="google-cloud-sdk-datastore-emulator" \
    -t my-cloud-sdk-docker:slim .

Alpine-based images

To install additional components for Alpine-based images, create a Dockerfile
that uses the gcloud image as the base image. For example, to add kubectl and
app-engine-java components:

FROM gcr.io/google.com/cloudsdktool/cloud-sdk:alpine
RUN apk --update add openjdk7-jre
RUN gcloud components install app-engine-java kubectl

and run:

docker build -t my-cloud-sdk-docker:alpine .

Note that in this case, you have to install dependencies of additional
components manually.

Installing different version of gcloud sdk:

docker build -t my-cloud-sdk-docker:alpine --build-arg CLOUD_SDK_VERSION=<release_number> .

Legacy image (Google App Engine based)

The original image in this repository was based off of

FROM gcr.io/google_appengine/base

The full Dockerfile for that can be found
here for archival as well as in image tag
google/cloud-sdk-docker:legacy

Cloud SDK Release Tracking

You can also follow the Cloud SDK Release schedule here

主要指標

概覽
名稱與所有者GoogleCloudPlatform/cloud-sdk-docker
主編程語言Dockerfile
編程語言Dockerfile (語言數: 3)
平台
許可證Apache License 2.0
所有者活动
創建於2014-02-28 05:37:03
推送於2025-06-12 19:33:26
最后一次提交2025-06-12 15:33:26
發布數257
最新版本名稱427.0.0 (發布於 2023-04-18 08:28:00)
第一版名稱159.0.0 (發布於 2017-06-20 23:29:22)
用户参与
星數759
關注者數98
派生數238
提交數1k
已啟用問題?
問題數230
打開的問題數7
拉請求數252
打開的拉請求數4
關閉的拉請求數80
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?