I am trying to set up a Docker for Windows container to build and host a simple website using lite-server and Sphinx.
Run the container,
$ docker run -it -p 8080:8080 -v "$(pwd):C:\src" website
start lite-server.
$ yarn serve
The website is available from the container's IP address so I know lite-server is serving the content, but I cannot access the content form http://localhost:8080.
How can I expose the website via localhost:8080?