3

是否可以将两个“www”条目放入dotcloud.yml文件中?我想要一个 type:node 和一个 type:static,但它们位于.yml文件的“www”部分。不知道我是否能做到这一点,但我肯定很乐意。

4

1 回答 1

4

服务名称必须是唯一的,因此您不能同时拥有名为“www”的服务node和服务。static

您是否有理由希望它们都具有“www”的名称?

服务名称可以是任何您想要的名称,并且仅用于标识服务,与您希望与该服务关联的域名无关。因此,通常最好将它们命名为明显的名称,以便更容易了解每个服务在做什么。

这是您可以为您做些什么的示例dotcloud.yml

www:                   # Could actually be anything: front, joe...
    type: node         # But this must be a valid service type.
static:                  # There again, the name can be anything you like.
    type: static       # ...but the type has to be a valid one.

有关dotcloud.yml文件检查的更多信息。http://docs.dotcloud.com/guides/build-file/

于 2012-06-01T11:38:10.037 回答