Docker Google 计算 f1-micro 实例

Docker on Google Compute f1-micro instance

我正在尝试在 google 计算引擎上部署一台新的 docker 机器,但我不需要太多资源。只是一个简单的nginx服务器。

当我运行:

$ docker-machine create --driver google --google-project my-project-name my-machine-name

效果很好,但创建了一个 n1-standard-1 (1 个 vCPU,3.75 GB 内存) 实例, 但它有比我需要的更多的资源。 我还能够成功创建 g1-small (1 vCPU, 1.7 GB memory) 实例。 但是当我尝试创建最小的实例时 f1-micro (1 vCPU, 0.6 GB memory) 它卡在了 Installing docker

我正在使用命令:

$ docker-machine create --driver google --google-project my-project-name --google-machine-type f1-micro my-machine-name

控制台输出:

Running pre-create checks...
(my-machine-name) Check that the project exists
(my-machine-name) Check if the instance already exists
Creating machine...
(my-machine-name) Generating SSH Key
(my-machine-name) Creating host...
(my-machine-name) Opening firewall ports
(my-machine-name) Creating instance
(my-machine-name) Waiting for Instance
(my-machine-name) Uploading SSH Key
Waiting for machine to be running, this may take a few minutes...
Detecting operating system of created instance...
Waiting for SSH to be available...
Detecting the provisioner...
Provisioning with ubuntu(systemd)...
Installing Docker...

docker 机器有最低要求吗?因为我找了找也没找到。 从我在 documentation 的示例中看到的情况来看,应该是可能的:

$ gcloud auth login
$ docker-machine create --driver google --google-project PROJECT_ID vm01
$ docker-machine create --driver google \
  --google-project PROJECT_ID \
  --google-zone us-central1-a \
  --google-machine-type f1-micro \
  vm02

我错过了什么吗? 谢谢。

好的,它最终成功了,只是花了很长时间。

15-20 分钟 在我的例子中。 (3 台不同的机器)