From the course: Deploying ASP.NET Applications

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Deploy the application to Docker

Deploy the application to Docker

From the course: Deploying ASP.NET Applications

Start my 1-month free trial

Deploy the application to Docker

- [Instructor] Now that we have everything ready, we can start deploying on docker. So let's start first and just list all the images we have in here, so we say docker image ls. And that will show us that we have Microsoft ASP.NET latest image available. If you remember, one of the deployments that we've done, was to do a deployment to a folder. So we have here in the D: Deploy FolderDeployment, the whole application ready to be run. As well, if you remember, one of the problems we had or one of the things that was happening there was that the connection strings were not updated, so in order for us to be able to point to a production database, we'll have to update the connection strings inside the Web.config file. And in order to do that, I will copy the, I will copy again those connection strings and I will paste them inside of the local ones in here. So once that's done, we can save the Web.config file, close this and now we can actually start real development of the application. I…

Contents