labs/windows/aspnet-web
Mano Marks 2849e8243c renamed dockercon folder to add the year 2017-01-23 18:11:29 -08:00
..
webserver asp.net and dot.net docker examples (#58) 2016-09-25 10:55:37 -07:00
README.md Removing old windows/.NET tutorials that are out of date. Expanding instructions in remaining tutorials. 2016-10-11 17:31:37 -07:00
docker-compose.yml renamed dockercon folder to add the year 2017-01-23 18:11:29 -08:00

README.md

Beginning ASP.NET Web application

A simple example using asp.net to serve a web page using kestrel. First clone this repository, and then you can use either docker-compose or docker run to start the image.

$ git clone https://github.com/docker/labs
$ cd labs/windows/aspnet-web
$ docker-compose up

or

$ git clone https://github.com/docker/labs
$ cd labs/windows/aspnet-web/webserver
$ docker build -t myaspnet .
$ docker run myaspnet

Then open up http://localhost:5000