How to get Docker container working
Created by: MarcSkovMadsen
Based on your mail I tried to follow the instructions on the github front page. So I git cloned, docker build and docker run the application. I could see I could not access the application at localhost:8080.
In order to get that working I needed to change a few things
Dockerfile
RUN bash -c 'echo -e "\
[server]\n\
enableCORS = false\n\
enableXsrfProtection = false\n\
\n\
[browser]\n\
serverAddress = \"0.0.0.0\"\
" > /root/.streamlit/config.toml'
Command line
docker run -p 8080:8080 --shm-size=3gb --cpus=2.0 --memory=1g --memory-swa
p=1g --rm wcomplexity
You can see the changes below including the app running on localhost:8080