Please help me with docker port issue.
I run docker with the command:
‘’‘sudo docker run -p 8503:85 ‘’’
After that I get this log:
You can now view your Streamlit app in your browser.
URL: xxx:8501
But I already have another streamlit application running on the port 8501 and it just opens at this address. How can I run the second app on different port?
What happens if you try setting the port when you call the streamlit server itself, using server.port=8503 as command line argument? (haven’t tried this myself though).