/aspnet-helloworld

Simple Hello World for ASP.NET with Docker

Primary LanguageC#

ASPNET Hello World with Docker on a Mac

This sample provides a basic working hello world for Docker users.

Codefresh build status

Usage

This image is on Docker Hub for easier usage.

docker run -t -d -p 5004:5004 savs/aspnet-helloworld

Then open your browser and point it to your Docker host IP on port 5004.

Build your own

Do the following:

git clone https://github.com/savs/aspnet-helloworld.git
cd aspnet-helloworld
docker build -t helloworld .
docker run -t -d -p 5004:5004 webapp

References