Tag: google container os

计算引擎上的google cloudML的Docker容器 – 安装存储桶的authentication

我一直在使用谷歌的机器学习平台cloudML 。 大图:我试图找出最简洁的方式,让他们的Docker 环境在Google计算实例上运行起来,可以访问cloudML API和存储桶。 从本地开始,我configuration了我的服务帐户 C:\Program Files (x86)\Google\Cloud SDK>gcloud config list Your active configuration is: [service] [compute] region = us-central1 zone = us-central1-a [core] account = 773889352370-compute@developer.gserviceaccount.com disable_usage_reporting = False project = api-project-773889352370 我用谷歌容器图像系列启动一个计算实例 gcloud compute instances create gci –image-family gci-stable –image-project google-containers –scopes 773889352370-compute@developer.gserviceaccount.com="https://www.googleapis.com/auth/cloud-platform" 编辑:需要明确地设置与cloudML沟通的范围。 然后我可以SSH进入该实例(用于debugging) gcloud compute ssh benweinstein2010@gci 在计算实例上,我可以从GCR中提取cloudML docker并运行它 docker […]