如何使用App Engine服务API设置Google托管虚拟机自定义运行时

时间:2015-04-13 16:32:36

标签: python-2.7 google-app-engine docker google-app-engine-python

默认的google-managed-vms python运行时为google/appengine-python27基于google/debian:wheezy

的泊坞窗图像

如何设置一个扩展debian:testing并支持的自定义python运行时:

  • 数据存储区
  • Memcache
  • 任务队列
  • 登录

google/appengine-python27吗?

1 个答案:

答案 0 :(得分:0)

阅读there

你可以开始创建一个扩展google / appengine-python27的Dockerfile,以便你的Dockerfile需要启动,如下所示

# The image is based on the Debian Wheezy distribution.
FROM google/appengine-python

如此处所述

enter image description here