How to bind IP without using Docker

Hey community ! As one of my university projects, I wish to create a remote web app using streamlit and for that I need to bind the IP to 0.0.0.0. A similar question has been answered on this forum using docker but since docker is very foreign to me, is that any other way I can change IP to 0.0.0.0 ?
Thank you for your help.

You should be able to do that by editing ~/.streamlit/config.toml to include:

[browser]
serverAddress = '0.0.0.0'
1 Like

hello ! Thank you for your help. This worked perfectly well for me. Have a good day

2 Likes