webserver-windows
A minimal webserver written in Go to run in a Windows nanoserver container
1M+
To add your own static files and run it as a Windows container use this Dockerfile
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.
MIT
Content type
Image
Digest
Size
102.3 MB
Last updated
almost 6 years ago
docker pull stefanscherer/webserver-windows