I have followed this tutorial here:
Deploy a Streamlit WebApp with Docker
And when I finally do:
docker run -p 8501:8501 app:latest
The application runs perfectly in my localhost:
However, I don’t know why they give me that Network URL. I cannot access from another device to this URL. Instead, I use the one that ifconfig
returns me. Then, I can access to the streamlit app, but unfortunately it does not load:
I have tried from other devices and the result is the same.
If I run the app from PyCharm, then I can access to the app from other devices sucessfully.
Why does this happen?
How can I fix this?