Spaces:
Sleeping
Sleeping
Georg
commited on
Commit
·
f592ee6
1
Parent(s):
cc1a738
Fix Gradio binding to 0.0.0.0 for container accessibility
Browse files
app.py
CHANGED
|
@@ -408,4 +408,4 @@ with gr.Blocks(title="FoundationPose Inference", theme=gr.themes.Soft()) as demo
|
|
| 408 |
|
| 409 |
|
| 410 |
if __name__ == "__main__":
|
| 411 |
-
demo.launch()
|
|
|
|
| 408 |
|
| 409 |
|
| 410 |
if __name__ == "__main__":
|
| 411 |
+
demo.launch(server_name="0.0.0.0", server_port=7860)
|