You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,30 @@
1
1
# ACR Build Hello World
2
2
3
-
This Node.js application is for use in demonstrating Azure Container Registry Build (ACR Build), a suite of features within [Azure Container Registry](https://azure.microsoft.com/services/container-registry/) for performing Docker container builds on [Azure](https://azure.com).
3
+
This Node.js application is for use in demonstrating scenarios for Azure Container Registry Tasks. [ACR Tasks](https://docs.microsoft.com/azure/container-registry/container-registry-tasks-overview) is a suite of features within [Azure Container Registry](https://azure.microsoft.com/services/container-registry/) for performing Docker container builds on [Azure](https://azure.com), as well as automated OS and framework patching for Docker containers.
4
4
5
5
## Features
6
6
7
-
This project includes three Dockerfiles:
7
+
This project includes the following Dockerfiles:
8
8
9
9
**Dockerfile* - Non-parameterized Dockerfile for building the application. References a base image in Docker Hub.
10
10
**Dockerfile-app* - Parameterized, accepts the `REGISTRY_NAME` argument to specify the FQDN of the container registry from which the base image is pulled.
11
11
**Dockerfile-base* - Defines a base image for the application defined in *Dockerfile-app*.
12
12
13
+
This project also includes the following YAML files:
14
+
15
+
**taskmulti.yaml* - Specifies a multistep task to build, run, and push a container image specified by *Dockerfile*.
16
+
**taskmulti-multiregistry.yaml* - Specifies a multistep task to build, run, and push container images specified by *Dockerfile* to multiple registries.
17
+
13
18
## Getting Started
14
19
15
20
### Companion articles
16
21
17
22
This project is intended for use with the following articles on [docs.microsoft.com][docs]:
18
23
19
-
*[Build container images in the cloud with Azure Container Registry Build][build-quick]
20
-
*[Automate container image builds with Azure Container Registry Build][build-task]
21
-
*[Automate image builds on base image update with Azure Container Registry Build][build-base]
24
+
*[Build container images in the cloud with Azure Container Registry Tasks][build-quick]
25
+
*[Automate container image builds in the cloud when you commit source code][build-task]
26
+
*[Run a multi-step container workflow in the cloud when you commit source code][multi-step]
27
+
*[Automate container image builds when a base image is updated in an Azure container registry][build-base]
22
28
23
29
### Quickstart
24
30
@@ -40,4 +46,5 @@ Although intended for use with the companion articles, you can perform the follo
0 commit comments