本文整理汇总了Python中juliabox.cloud.Compute.get_docker_bridge_ip方法的典型用法代码示例。如果您正苦于以下问题:Python Compute.get_docker_bridge_ip方法的具体用法?Python Compute.get_docker_bridge_ip怎么用?Python Compute.get_docker_bridge_ip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类juliabox.cloud.Compute
的用法示例。
在下文中一共展示了Compute.get_docker_bridge_ip方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: allocate_random_endpoints
# 需要导入模块: from juliabox.cloud import Compute [as 别名]
# 或者: from juliabox.cloud.Compute import get_docker_bridge_ip [as 别名]
def allocate_random_endpoints():
ctx = zmq.Context.instance()
binder = ctx.socket(zmq.REQ)
bind_pfx = "tcp://" + Compute.get_docker_bridge_ip()
port_in = binder.bind_to_random_port(bind_pfx)
port_out = binder.bind_to_random_port(bind_pfx)
binder.close()
time.sleep(0.25)
endpoint_in = bind_pfx + str(':') + str(port_in)
endpoint_out = bind_pfx + str(':') + str(port_out)
return endpoint_in, endpoint_out