|
1 | 1 | ---
|
2 |
| -title: Containerize an app with Docker |
3 |
| -description: This tutorial teaches how to create a basic .NET Core application and containerize it with Docker. |
4 |
| -ms.date: 10/11/2018 |
| 2 | +title: Containerize an app with Docker tutorial |
| 3 | +description: In this tutorial you will learn how to containerize a .NET Core application with Docker. |
| 4 | +ms.date: 03/20/2019 |
5 | 5 | ms.topic: tutorial
|
6 | 6 | ms.custom: "mvc, seodec18"
|
| 7 | +#Customer intent: As a developer, I want to containerize my .NET Core app so that I can deploy it to the cloud. |
7 | 8 | ---
|
8 | 9 |
|
9 |
| -# How to containerize a .NET Core application |
| 10 | +# Tutorial: Containerize a .NET Core app |
10 | 11 |
|
11 |
| -This tutorial teaches the Docker container build and deploy tasks for a .NET Core application. The [Docker platform](https://docs.docker.com/engine/docker-overview/#the-docker-platform) uses the [Docker Engine](https://docs.docker.com/engine/docker-overview/#docker-engine) to quickly build and package apps as [Docker images](https://docs.docker.com/glossary/?term=image). These images are written in the [Dockerfile](https://docs.docker.com/glossary/?term=Dockerfile) format to be deployed and run in a [layered container](https://docs.docker.com/engine/userguide/storagedriver/imagesandcontainers/#container-and-layers). |
| 12 | +This tutorial teaches you how to build a Docker image that contains your .NET Core application. The image can be used to create containers for your local development environment, private cloud, or public cloud. |
12 | 13 |
|
13 |
| -During the course of this tutorial, you learn: |
| 14 | +In this tutorial you will learn how to: |
14 | 15 |
|
15 | 16 | > [!div class="checklist"]
|
16 |
| -> * How to create a Dockerfile |
17 |
| -> * How to create a .NET Core app. |
18 |
| -> * How to deploy your app into a Docker container. |
| 17 | +> * Create a Dockerfile |
| 18 | +> * Pull a Microsoft .NET Core Docker base image |
| 19 | +> * Customize and deploy your app to the image |
| 20 | +> * Create and run a container |
| 21 | +> * Deploy to Azure |
| 22 | +
|
| 23 | +This tutorial teaches the Docker container build and deploy tasks for a .NET Core application. The [Docker platform](https://docs.docker.com/engine/docker-overview/#the-docker-platform) uses the [Docker Engine](https://docs.docker.com/engine/docker-overview/#docker-engine) to quickly build and package apps as [Docker images](https://docs.docker.com/glossary/?term=image). These images are written in the [Dockerfile](https://docs.docker.com/glossary/?term=Dockerfile) format to be deployed and run in a [layered container](https://docs.docker.com/engine/userguide/storagedriver/imagesandcontainers/#container-and-layers). |
| 24 | + |
| 25 | + |
19 | 26 |
|
20 | 27 | ## .NET Core: Easiest way to get started
|
21 | 28 |
|
|
0 commit comments