Google Cloud Platform
使用Container-optimized Google Compute Engine images快速开始。
进入Google Cloud Console 创建一个新的Cloud Project with
Compute Engine enabled下载和配置 Google Cloud SDK 来使用你的项目,通过如下命令:
$ curl -sSL https://sdk.cloud.google.com | bash
$ gcloud auth login
$ gcloud config set project <google-cloud-project-id>
使用最新的启动新的实例 Container-optimized image:
(select a zone close to you and the desired instance size)$ gcloud compute instances create docker-playground \
--image container-vm \
--zone us-central1-a \
--machine-type f1-micro
使用SSH链接到实例:
$ gcloud compute ssh --zone us-central1-a docker-playground
docker-playground:~$ sudo docker run hello-world
Hello from Docker.
显示在你的安装界面证明其正常工作。
…