Skip to content

Commit c02660c

Browse files
committed
freshness update
1 parent 7674861 commit c02660c

10 files changed

Lines changed: 18 additions & 20 deletions

learn-pr/azure/build-and-store-container-images/1-intro-to-azure-container-registry.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ uid: learn.azure-container-registry.introduction
33
metadata:
44
title: Introduction to Azure Container Registry
55
description: Introduction to Azure Container Registry
6-
ms.date: 12/23/2025
6+
ms.date: 03/20/2026
77
author: davidsmatlak
88
ms.author: davidsmatlak
99
ms.topic: unit
1010
title: Introduction to Azure Container Registry
1111
durationInMinutes: 2
1212
content: |
1313
[!include[](includes/1-introduction.md)]
14-

learn-pr/azure/build-and-store-container-images/2-deploy-azure-container-registry.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uid: learn.azure-container-registry.deploy-acr
33
metadata:
44
title: Exercise - Deploy an Azure container registry
55
description: Deploy an Azure container registry
6-
ms.date: 12/23/2025
6+
ms.date: 03/20/2026
77
author: davidsmatlak
88
ms.author: davidsmatlak
99
ms.topic: unit
@@ -19,4 +19,3 @@ content: |
1919
# resource:
2020
# type: "Microsoft.ContainerRegistry/registries"
2121
# hint: "Run the `az acr create` command as shown to create your container registry."
22-

learn-pr/azure/build-and-store-container-images/3-build-container-image.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ uid: learn.azure-container-registry.build-image
33
metadata:
44
title: Exercise - Build container images using Azure Container Registry Tasks
55
description: Build container images using Azure Container Registry Tasks
6-
ms.date: 12/23/2025
6+
ms.date: 03/20/2026
77
author: davidsmatlak
88
ms.author: davidsmatlak
99
ms.topic: unit
1010
title: Exercise - Build container images using Azure Container Registry Tasks
1111
durationInMinutes: 10
1212
content: |
1313
[!include[](includes/3-build-images.md)]
14-

learn-pr/azure/build-and-store-container-images/4-deploy-container-image.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uid: learn.azure-container-registry.deploy-image
33
metadata:
44
title: Exercise - Deploy images from Azure Container Registry
55
description: Deploy images from Azure Container Registry
6-
ms.date: 12/23/2025
6+
ms.date: 03/20/2026
77
author: davidsmatlak
88
ms.author: davidsmatlak
99
ms.topic: unit
@@ -13,4 +13,3 @@ title: Exercise - Deploy images from Azure Container Registry
1313
durationInMinutes: 15
1414
content: |
1515
[!include[](includes/4-deploy-image.md)]
16-

learn-pr/azure/build-and-store-container-images/5-replicate-container-image.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ uid: learn.azure-container-registry.image-replication
33
metadata:
44
title: Exercise - Replicate a container image to different Azure regions
55
description: Replicate a container image to different Azure regions
6-
ms.date: 12/23/2025
6+
ms.date: 03/20/2026
77
author: davidsmatlak
88
ms.author: davidsmatlak
99
ms.topic: unit
1010
title: Exercise - Replicate a container image to different Azure regions
1111
durationInMinutes: 5
1212
content: |
1313
[!include[](includes/5-image-replication.md)]
14-

learn-pr/azure/build-and-store-container-images/6-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Knowledge check
44
metadata:
55
title: Knowledge check
66
description: Azure Container Registry knowledge check.
7-
ms.date: 12/23/2025
7+
ms.date: 03/20/2026
88
author: davidsmatlak
99
ms.author: davidsmatlak
1010
ms.topic: unit

learn-pr/azure/build-and-store-container-images/includes/2-deploy-acr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
3737
1. Define an environment variable, _ACR_NAME_, to hold your container registry name using the following command. Replace `<your-unique-acr-name>` with your container registry name.
3838
39-
The container registry name must be unique within Azure and contain 5-50 alphanumeric characters. For more information, see [Define your naming convention](/azure/cloud-adoption-framework/ready/azure-best-practices/resource-naming).
39+
The container registry name must be unique within Azure and contain 5-50 alphanumeric characters, lowercase, and no hyphens. For example, _learndemoregistry20260320_. For more information, see [Define your naming convention](/azure/cloud-adoption-framework/ready/azure-best-practices/resource-naming).
4040
4141
```azurecli
4242
ACR_NAME=<your-unique-acr-name>

learn-pr/azure/build-and-store-container-images/includes/3-build-images.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22

33
You use a Dockerfile to provide build instructions. Azure Container Registry Tasks enables you to reuse any Dockerfile currently in your environment, including multi-staged builds. For this example, you create a new Dockerfile that builds a Node.js application.
44

5-
1. Open the Cloud Shell editor and create a new file named _Dockerfile_ using the `code` command.
5+
1. From the Cloud Shell toolbar, select `{}` to open the Cloud Shell editor.
6+
7+
The editor opens in a new window above the Bash prompt named _Untitled_.
8+
9+
1. On the Bash command line, paste the following command to create a new file in the editor named _Dockerfile_.
610

711
```azurecli
812
code Dockerfile
913
```
1014
11-
1. Paste the following Dockerfile contents into the file.
15+
1. Copy the following Dockerfile contents into the file. Use keyboard shortcut `Ctrl + V` to paste the contents into the editor.
1216
1317
This Dockerfile uses the `node:25-alpine` image as its base image. It then adds the Node.js application files to the image and installs the application dependencies. Finally, it configures the container to serve the application on port 80 via the _EXPOSE_ instruction.
1418
@@ -21,7 +25,7 @@ You use a Dockerfile to provide build instructions. Azure Container Registry Tas
2125
CMD ["node", "server.js"]
2226
```
2327
24-
1. Use `Ctrl + S` to save the file and then `Ctrl + Q` to close the editor.
28+
1. Use `Ctrl + S` to save the updated _Dockerfile_ and then `Ctrl + Q` to close the editor.
2529
1. Build the container image from the Dockerfile using the `az acr build` command.
2630
2731
> [!NOTE]

learn-pr/azure/build-and-store-container-images/includes/4-deploy-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
You can pull container images from Azure Container Registry using various container management platforms, such as Azure Container Instances, Azure Kubernetes Service, or Docker for Windows or Mac. In this module, you deploy the image to an Azure Container Instance.
1+
You can pull container images from Azure Container Registry using various container management platforms, like Azure Container Instances, Azure Kubernetes Service, or Docker for Windows or Mac. In this module, you deploy the image to an Azure Container Instance.
22

33
## Registry authentication
44

@@ -54,11 +54,11 @@ Azure Container Registry doesn't support unauthenticated access and requires aut
5454
--output table
5555
```
5656
57-
1. In a separate browser tab, navigate to the IP address of the container. If everything is configured correctly, you should see the following web page:
57+
1. In a separate browser tab, navigate to the container's IP address. If everything is configured correctly, you should see the following web page:
5858
5959
```output
6060
Hello World
61-
Version: 25.2.1
61+
Version: 25.8.1
6262
```
6363

6464
Port 80 is used so the web page address is `http://<IP_ADDRESS>`.

learn-pr/azure/build-and-store-container-images/index.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
title: Build and store container images with Azure Container Registry
55
description: Learn how to use Docker to build, store, and manage private container images with the Azure Container Registry.
66
manager: rayoflores
7-
ms.date: 12/23/2025
7+
ms.date: 03/20/2026
88
author: davidsmatlak
99
ms.author: davidsmatlak
1010
ms.topic: module
@@ -42,4 +42,3 @@ units:
4242
- learn.azure-container-registry.knowledge-check
4343
badge:
4444
uid: learn.azure-container-registry.badge
45-

0 commit comments

Comments
 (0)