Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Latest commit

 

History

History
36 lines (20 loc) · 2.38 KB

File metadata and controls

36 lines (20 loc) · 2.38 KB

Modernize ASP.NET Apps Lab

You can run full .NET Framework apps in Docker using the Windows Server Core base image from Microsoft. That image is a headless version of Windows Server 2016, so it has no UI but it has all the other roles and features available. Building on top of that there are also Microsoft images for [IIS]https://store.docker.com/images/iis) and ASP.NET, which are already configured to run ASP.NET and ASP.NET 3.5 apps in IIS.

This lab steps through porting an ASP.NET WebForms app to run in a Docker container on Windows 10 or Windows Server 2016. With the app running in Docker, you can easily modernize it - and in the lab you'll add new features quickly and safely by making use of the Docker platform.

What You Will Learn

In this self-paced lab, you'll learn how to:

  • Package an existing ASP.NET application so it runs in Docker, without any application changes.

  • Run SQL Server Express in a Docker container, and use it for the application database.

  • Use a feature-driven approach to address problems in the existing application, without an extensive re-write.

  • Use the Dockerfile and Docker Compose syntax to replace manual deployment documents.

Prerequisites

You'll need Docker running on Windows. You can follow the Windows Container Lab Setup to install Docker on Windows 10, or Windows 2016 - locally, or on AWS or Azure.

You should be familiar with ASP.NET and C#, and with the key Docker concepts

Optional

The build process for the application uses MSBuild in Docker container and does not use Visual Studio, but if you want to view or edit the solution yourself, you can use Visual Studio 2015. The free Visual Studio Community Edition is fine, or you can use Visual Studio Code.

The Lab