To add your own static files and run it as a Windows container use this Dockerfile
# escape=`
FROM stefanscherer/webserver-windows
COPY . C:\site
WORKDIR C:\site
EXPOSE 8080
Then create your Docker image with
docker build -t mysite .
Run your container with
docker run -d --name=mysite -p 8080:8080 mysite
Open a browser with
start http://$(docker inspect -f '{{ .NetworkSettings.Networks.nat.IPAddress }}' mysite):8080
or use the IP address of your Docker host if accessing from a remote machine.
The webserver application is listenting on port 8080. You can modify that by setting the environment variable PORT
to another port number.
MIT