Skip to content

Commit b87ca36

Browse files
author
Greg Van Liew
committed
Fix Azure Docker tutorial TOC
1 parent aa935fb commit b87ca36

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

tutorials/docker-extension/containerize-app.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
22
Order: 3
33
Area: docker
4-
TOCTitle: Containerize the Application
5-
PageTitle: Containerize the Application
4+
TOCTitle: Create the Image
5+
PageTitle: Create the Image
66
MetaDescription: Node.js Deployment to Azure App Services with Visual Studio Code
77
DateApproved: 1/11/2018
88
---
9-
# Containerize your Node.js Application
9+
# Create your Node.js application image
1010

11-
Next, use the Docker extension to add the necessary files to containerize your app, build the image, and push it to a registry.
11+
Next, use the Docker extension to add the necessary files to create an image for your app, build the image, and push it to a registry.
1212

13-
> **Tip:** If you don't already have an app to containerize, follow this [Node.js tutorial](/docs/nodejs/nodejs-tutorial.md).
13+
> **Tip:** If you don't already have an app for this walkthrough, follow the [Node.js tutorial](/docs/nodejs/nodejs-tutorial.md).
1414
15-
## Add the Docker files to workspace
15+
## Add Docker files
1616

1717
Open the **Command Palette** (`kb(workbench.action.showCommands)`) and type `add docker files to workspace` to run the **Docker: Add docker files to workspace** command. This command will create the necessary Docker files. Choose your application type - **Node.js** in this tutorial - along with the port that your application listens on.
1818

@@ -53,4 +53,4 @@ Next, you'll deploy your image to Azure.
5353

5454
----
5555

56-
<a class="tutorial-next-btn" href="/tutorials/docker-extension/deploy-container">I containerized my Node.js application</a> <a class="tutorial-feedback-btn" onclick="reportIssue('docker-extension', 'containerize-app')" href="javascript:void(0)">I ran into an issue</a>
56+
<a class="tutorial-next-btn" href="/tutorials/docker-extension/deploy-container">I've created an image for my Node.js application</a> <a class="tutorial-feedback-btn" onclick="reportIssue('docker-extension', 'containerize-app')" href="javascript:void(0)">I ran into an issue</a>

tutorials/docker-extension/create-registry.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
Order: 2
33
Area: docker
4-
TOCTitle: Getting Started
5-
PageTitle: Getting Started
4+
TOCTitle: Container Registries
5+
PageTitle: Container Registries
66
MetaDescription: Node.js Deployment to Azure App Services with Visual Studio Code
77
DateApproved: 12/18/2017
88
---
9+
# Using Container Registries
910

10-
# Create a Container Registry
11-
12-
You need a registry to push your containerized app to once the image is built, once pushed, you will deploy directly from your registry.
11+
You need a container registry to push your app image to once the image is built. Once your image is available in a container registry, you will deploy directly from that registry.
1312

1413
## Using Azure Container Registry
1514

@@ -23,7 +22,7 @@ Docker Hub is Docker's own hosted registry that provides a free way of sharing i
2322

2423
## Prerequisite Check
2524

26-
Ensure that the registry endpoint that you just setup is visible under "Registries" in the **Docker** explorer.
25+
Ensure that the registry endpoint that you just setup is visible under **Registries** in the **DOCKER** explorer.
2726

2827
![Registries](images/docker-extension/registries.png)
2928

tutorials/docker-extension/deploy-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DateApproved: 1/11/2018
88
---
99
# Deploy the image to Azure App Service
1010

11-
Now that you have your app image built and pushed to a registry, you can deploy to Azure App Service directly from the Docker extension explorer.
11+
Now that you have your app image built and pushed to a registry, you can deploy to [Azure App Service](https://azure.microsoft.com/en-us/services/app-service/) directly from the Docker extension explorer.
1212

1313
## Deploy the image
1414

0 commit comments

Comments
 (0)