當前位置: 首頁>>代碼示例>>Golang>>正文


Golang compose.Compose類代碼示例

本文整理匯總了Golang中github.com/ContainX/depcon/compose.Compose的典型用法代碼示例。如果您正苦於以下問題:Golang Compose類的具體用法?Golang Compose怎麽用?Golang Compose使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Compose類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: port

func port(c compose.Compose, cmd *cobra.Command, args []string) error {
	if len(args) != 2 {
		return PortInvalidArgs
	}
	index, _ := cmd.Flags().GetInt(INDEX_FLAG)
	proto, _ := cmd.Flags().GetString(PROTO_FLAG)

	return c.Port(index, proto, args[0], args[1])
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:9,代碼來源:actions.go

示例2: up

func up(c compose.Compose, cmd *cobra.Command, args []string) error {
	return c.Up(args...)
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:3,代碼來源:actions.go

示例3: kill

func kill(c compose.Compose, cmd *cobra.Command, args []string) error {
	return c.Kill(args...)
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:3,代碼來源:actions.go

示例4: start

func start(c compose.Compose, cmd *cobra.Command, args []string) error {
	return c.Start(args...)
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:3,代碼來源:actions.go

示例5: ps

func ps(c compose.Compose, cmd *cobra.Command, args []string) error {
	q, _ := cmd.Flags().GetBool(QUIET_FLAG)
	return c.PS(q)
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:4,代碼來源:actions.go

示例6: delete

func delete(c compose.Compose, cmd *cobra.Command, args []string) error {
	return c.Delete(args...)
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:3,代碼來源:actions.go

示例7: build

func build(c compose.Compose, cmd *cobra.Command, args []string) error {
	return c.Build(args...)
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:3,代碼來源:actions.go

示例8: logs

func logs(c compose.Compose, cmd *cobra.Command, args []string) error {
	return c.Logs(args...)
}
開發者ID:ContainX,項目名稱:depcon,代碼行數:3,代碼來源:actions.go


注:本文中的github.com/ContainX/depcon/compose.Compose類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。