本文整理匯總了Python中DockerBackend.get_all_exposed_ports方法的典型用法代碼示例。如果您正苦於以下問題:Python DockerBackend.get_all_exposed_ports方法的具體用法?Python DockerBackend.get_all_exposed_ports怎麽用?Python DockerBackend.get_all_exposed_ports使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DockerBackend
的用法示例。
在下文中一共展示了DockerBackend.get_all_exposed_ports方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: user_box
# 需要導入模塊: import DockerBackend [as 別名]
# 或者: from DockerBackend import get_all_exposed_ports [as 別名]
def user_box(the_user):
which_user = User.query.filter(User.name == str(the_user)).first()
if which_user is None:
return redirect(url_for("index"))
if current_user.name is not which_user.name:
return redirect(url_for("index"))
dhbox_username = which_user.name
port_info = DockerBackend.get_all_exposed_ports(dhbox_username)
hostname = DockerBackend.get_hostname()
resp = make_response(render_template('my_dhbox.html', user=the_user, apps=all_apps))
return resp
示例2: user_box
# 需要導入模塊: import DockerBackend [as 別名]
# 或者: from DockerBackend import get_all_exposed_ports [as 別名]
def user_box(the_user):
which_user = User.query.filter(User.name == str(the_user)).first()
if which_user is None:
return redirect(url_for("index"))
if current_user.name is not which_user.name:
return redirect(url_for("index"))
email_domain = which_user.email.split("@",1)[1]
if email_domain == 'demo.com':
demo = True
else:
demo = False
dhbox_username = which_user.name
port_info = DockerBackend.get_all_exposed_ports(dhbox_username)
hostname = DockerBackend.get_hostname()
resp = make_response(render_template('my_dhbox.html',
user=the_user,
apps=filter(lambda app: app.get('hide', False) != True, all_apps),
demo=demo
)
)
return resp