Skip to content

Commit f011ea4

Browse files
authored
Rewrite docker overview article for netcore (#11527)
* Rewrite docker intro * Renamed docker file * Added redirect + toc * More redirect changes * Update docs/core/docker/intro-net-docker.md Co-Authored-By: Thraka <[email protected]> * Apply suggestions from code review Co-Authored-By: Thraka <[email protected]> * Add minor change * Addressed feedback * Fix merge conflict
1 parent 181c0c3 commit f011ea4

File tree

5 files changed

+59
-445
lines changed

5 files changed

+59
-445
lines changed

.openpublishing.redirection.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@
2929
"redirect_url": "/aspnet/core/publishing/visual-studio-tools-for-docker",
3030
"redirect_document_id": true
3131
},
32+
{
33+
"source_path": "docs/core/docker/docker-basics-dotnet-core.md",
34+
"redirect_url": "/dotnet/core/docker/build-docker-netcore-container",
35+
"redirect_document_id": true
36+
},
37+
{
38+
"source_path": "docs/core/docker/building-net-docker-images.md",
39+
"redirect_url": "/dotnet/core/docker/intro-net-docker"
40+
},
3241
{
3342
"source_path": "docs/core/getting-started.md",
3443
"redirect_url": "/dotnet/core/get-started",

docs/core/docker/docker-basics-dotnet-core.md renamed to docs/core/docker/build-docker-netcore-container.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
---
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
55
ms.topic: tutorial
66
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.
78
---
89

9-
# How to containerize a .NET Core application
10+
# Tutorial: Containerize a .NET Core app
1011

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.
1213

13-
During the course of this tutorial, you learn:
14+
In this tutorial you will learn how to:
1415

1516
> [!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+
1926

2027
## .NET Core: Easiest way to get started
2128

docs/core/docker/building-net-docker-images.md

Lines changed: 0 additions & 277 deletions
This file was deleted.

0 commit comments

Comments
 (0)