当前位置: 首页>>代码示例>>Python>>正文


Python Config.builds方法代码示例

本文整理汇总了Python中cattle.Config.builds方法的典型用法代码示例。如果您正苦于以下问题:Python Config.builds方法的具体用法?Python Config.builds怎么用?Python Config.builds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cattle.Config的用法示例。


在下文中一共展示了Config.builds方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _image_build

# 需要导入模块: from cattle import Config [as 别名]
# 或者: from cattle.Config import builds [as 别名]
    def _image_build(self, image, progress):
        client = docker_client()
        opts = dict(image.data.fields.build)

        def do_build():
            for key in ['context', 'remote']:
                if key in opts:
                    del opts[key]
            opts['stream'] = True
            opts['rm'] = True
            marshaller = get_type(MARSHALLER)
            for status in client.build(**opts):
                try:
                    status = marshaller.from_string(status)
                    progress.update(status['stream'])
                except:
                    pass

        if is_str_set(opts, 'context'):
            downloaded = None
            try:
                downloaded = download_file(opts['context'], Config.builds())
                with open(downloaded) as f:
                    del opts['context']
                    opts['fileobj'] = f
                    opts['custom_context'] = True
                    do_build()
            finally:
                if downloaded is not None:
                    os.remove(downloaded)
        else:
            remote = opts['remote']
            if remote.startswith('[email protected]:'):
                remote = remote.replace('[email protected]:', 'git://github.com/')
            del opts['remote']
            opts['path'] = remote
            do_build()
开发者ID:imikushin,项目名称:python-agent,代码行数:39,代码来源:storage.py


注:本文中的cattle.Config.builds方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。