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/azure-functions/functions-how-to-custom-container.md
+23-20Lines changed: 23 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,7 @@ az functionapp config container set --image <IMAGE_NAME> --registry-password <SE
143
143
In this example, `<IMAGE_NAME>` is the full name of the new image with version. Private registries require you to supply a username and password. Store these credentials securely.
144
144
145
145
### [Azure portal](#tab/portal)
146
+
146
147
:::zone pivot="container-apps"
147
148
148
149
1. In the [Azure portal], locate your function app. In the left menu, select **Settings** > **Configuration**.
@@ -161,7 +162,7 @@ The specified image version is deployed to your app.
161
162
::: zone-end
162
163
163
164
:::zone pivot="azure-arc"
164
-
This feature is not documented.
165
+
This feature isn't documented.
165
166
::: zone-end
166
167
167
168
---
@@ -265,6 +266,7 @@ Use the following commands to get data about the image or change the deployment
265
266
-[`az functionapp config container set`](/cli/azure/functionapp/config/container#az-functionapp-config-container-set): change registry settings or update the image used for deployment, as shown in the previous example.
266
267
267
268
### [Azure portal](#tab/portal)
269
+
268
270
:::zone pivot="container-apps"
269
271
270
272
1. In the [Azure portal], locate your function app. In the left menu, select **Settings** > **Configuration**.
@@ -287,7 +289,7 @@ The new image is deployed to your app based on your new settings.
287
289
::: zone-end
288
290
289
291
:::zone pivot="azure-arc"
290
-
This feature is not documented.
292
+
This feature isn't documented.
291
293
::: zone-end
292
294
293
295
---
@@ -315,7 +317,7 @@ When you create a containerized function app in an environment that has workload
In the [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command, the `--environment` parameter specifies the Container Apps environment and the `--image` parameter specifies the image to use for the function app. In this example, replace `<STORAGE_NAME>` with the name you used in the previous section for the storage account. Also, replace `<APP_NAME>` with a name appropriate to you that is unique in the environment.
320
+
In the [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command, the `--environment` parameter specifies the Container Apps environment and the `--image` parameter specifies the image to use for the function app. In this example, replace `<STORAGE_NAME>` with the name you used in the previous section for the storage account. Also, replace `<APP_NAME>` with a name appropriate to you that's unique in the environment.
319
321
320
322
To set the resources allocated to your app, replace `<CPU_COUNT>` with your desired number of virtual CPUs, with a minimum of 0.5 up to the maximum allowed by the profile. For `<MEMORY_SIZE>`, choose a dedicated memory amount from 1 GB up to the maximum allowed by the profile.
321
323
@@ -373,23 +375,24 @@ You can enable Azure Functions to automatically update your deployment of an ima
The [az functionapp deployment container config](/cli/azure/functionapp/deployment/container#az-functionapp-deployment-container-config) command enables continuous deployment and returns the deployment webhook URL. You can retrieve this URL at any time by using the [az functionapp deployment container show-cd-url](/cli/azure/functionapp/deployment/container#az-functionapp-deployment-container-show-cd-url) command.
The `DOCKER_ENABLE_CI` application setting controls whether continuous deployment is enabled from the container repository. The [Get-AzWebAppContainerContinuousDeploymentUrl](/powershell/module/az.websites/get-azwebappcontainercontinuousdeploymenturl) cmdlet returns the URL of the deployment webhook.
389
-
390
-
---
391
-
392
-
As before, replace `<APP_NAME>` with your function app name.
The [az functionapp deployment container config](/cli/azure/functionapp/deployment/container#az-functionapp-deployment-container-config) command enables continuous deployment and returns the deployment webhook URL. You can retrieve this URL at any time by using the [az functionapp deployment container show-cd-url](/cli/azure/functionapp/deployment/container#az-functionapp-deployment-container-show-cd-url) command.
The `DOCKER_ENABLE_CI` application setting controls whether continuous deployment is enabled from the container repository. The [Get-AzWebAppContainerContinuousDeploymentUrl](/powershell/module/az.websites/get-azwebappcontainercontinuousdeploymenturl) cmdlet returns the URL of the deployment webhook.
392
+
393
+
---
394
+
395
+
As before, replace `<APP_NAME>` with your function app name.
393
396
394
397
1. Copy the deployment webhook URL to the clipboard.
0 commit comments