From the course: Database Foundations: Application Development

Unlock the full course today

Join today to access over 24,900 courses taught by industry experts.

Create the ASP.NET Core web server with Docker

Create the ASP.NET Core web server with Docker

From the course: Database Foundations: Application Development

Create the ASP.NET Core web server with Docker

- [Instructor] To create our ASP.NET Core web app, we already know that we need two components, a web server and a database server. We're going to leverage Docker again to compartmentalize everything and make it easy to manage. But let's take a different approach from what we did with the PHP project. In the first project we created a network then created each server container in that network, we also had to log into the PHP web server to install some additional software drivers. We did all of this by running multiple commands in sequence. Docker has a very useful feature called compose that will allow us to combine multiple steps into one. This makes it much easier to set up applications that require multiple containers working together. In the exercise files chapter three folder you'll find the project folder, ASP.NET. This folder contains all of our project files. Now there's three files that I want to focus on.…

Contents