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: articles/container-registry/container-registry-tasks-overview.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Learn how to use quick tasks in the first ACR Tasks tutorial, [Build container i
47
47
48
48
## Trigger task on source code update
49
49
50
-
Trigger a container image build or multi-step task when code is committed, or a pull request is made or updated, to a Git repository in GitHub or Azure DevOps. For example, configure a build task with the Azure CLI command [az acr task create][az-acr-task-create] by specifying a Git repository and optionally a branch and Dockerfile. When your team updates code in the repository, an ACR Tasks-created webhook triggers a build of the container image defined in the repo.
50
+
Trigger a container image build or multi-step task when code is committed, or a pull request is made or updated, to a public or private Git repository in GitHub or Azure DevOps. For example, configure a build task with the Azure CLI command [az acr task create][az-acr-task-create] by specifying a Git repository and optionally a branch and Dockerfile. When your team updates code in the repository, an ACR Tasks-created webhook triggers a build of the container image defined in the repo.
51
51
52
52
ACR Tasks supports the following triggers when you set a Git repo as the task's context:
53
53
@@ -58,6 +58,9 @@ ACR Tasks supports the following triggers when you set a Git repo as the task's
58
58
59
59
To configure the trigger, you provide the task a personal access token (PAT) to set the webhook in the GitHub or Azure DevOps repo.
60
60
61
+
> [!NOTE]
62
+
> Currently, ACR Tasks doesn't support commit or pull request triggers in GitHub Enterprise repos.
63
+
61
64
Learn how to trigger builds on source code commit in the second ACR Tasks tutorial, [Automate container image builds with Azure Container Registry Tasks](container-registry-tutorial-build-task.md).
62
65
63
66
## Automate OS and framework patching
@@ -117,9 +120,6 @@ The following table shows a few examples of supported context locations for ACR
117
120
| Azure DevOps subfolder | Files within a subfolder in a public or private Azure repo. Example shows combination of branch and subfolder specification. |`https://dev.azure.com/user/myproject/_git/myapp-repo#mybranch:myfolder`|
118
121
| Remote tarball | Files in a compressed archive on a remote webserver. |`http://remoteserver/myapp.tar.gz`|
119
122
120
-
> [!NOTE]
121
-
> Currently GitHub Enterprise repos aren't supported contexts for ACR Tasks.
122
-
123
123
## Image platforms
124
124
125
125
By default, ACR Tasks builds images for the Linux OS and the amd64 architecture. Specify the `--platform` tag to build Windows images or Linux images for other architectures. Specify the OS and optionally a supported architecture in OS/architecture format (for example, `--platform Linux/arm`). For ARM architectures, optionally specify a variant in OS/architecture/variant format (for example, `--platform Linux/arm64/v8`):
Copy file name to clipboardExpand all lines: articles/container-registry/container-registry-tutorial-build-task.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.custom: "seodec18, mvc"
13
13
In addition to a [quick task](container-registry-tutorial-quick-task.md), ACR Tasks supports automated Docker container image builds in the cloud when you commit source code to a Git repository. Supported Git contexts for ACR Tasks include public or private GitHub or Azure repos.
14
14
15
15
> [!NOTE]
16
-
> Currently GitHub Enterprise repos aren't supported contexts for ACR Tasks.
16
+
> Currently, ACR Tasks doesn't support commit or pull request triggers in GitHub Enterprise repos.
17
17
18
18
In this tutorial, your ACR task builds and pushes a single container image specified in a Dockerfile when you commit source code to a Git repo. To create a [multi-step task](container-registry-tasks-multi-step.md) that uses a YAML file to define steps to build, push, and optionally test multiple containers on code commit, see [Tutorial: Run a multi-step container workflow in the cloud when you commit source code](container-registry-tutorial-multistep-task.md). For an overview of ACR Tasks, see [Automate OS and framework patching with ACR Tasks](container-registry-tasks-overview.md)
0 commit comments