GCP - 使用 OS 图片创建 Datalab 实例
GCP - Create Datalab instance with OS image
我想创建一个带有 ubuntu 的 Datalab VM 实例,但教程只解释了如何自定义机器类型,而不是操作系统。如何使用 Ubuntu 创建 Datalab 虚拟机?
您可以指定与 --image-name
标志一起使用的图像(docs). The Ubuntu image can be retrieved from Docker Hub, for example. You can see an example here 他们标记图像并将其推送到 GCR(Google Container Registry):
docker tag datalab gcr.io/PROJECT_ID/datalab
然后您可以在创建 Datalab 实例时使用上述标志指定该图像:
datalab create --image-name=gcr.io/PROJECT_ID/datalab INSTANCE_NAME
我想创建一个带有 ubuntu 的 Datalab VM 实例,但教程只解释了如何自定义机器类型,而不是操作系统。如何使用 Ubuntu 创建 Datalab 虚拟机?
您可以指定与 --image-name
标志一起使用的图像(docs). The Ubuntu image can be retrieved from Docker Hub, for example. You can see an example here 他们标记图像并将其推送到 GCR(Google Container Registry):
docker tag datalab gcr.io/PROJECT_ID/datalab
然后您可以在创建 Datalab 实例时使用上述标志指定该图像:
datalab create --image-name=gcr.io/PROJECT_ID/datalab INSTANCE_NAME