Skip to content

Commit 12d32ff

Browse files
authored
small changes
1 parent 474c50f commit 12d32ff

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/app-service/deploy-ci-cd-custom-container.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Learn how to configure continuous integration and continuous delivery (CI/CD) fo
1717

1818
## 1. Go to the Deployment Center
1919

20-
In the [Azure portal](https://portal.azure.com), go to the management pane for your App Service app.
20+
In the [Azure portal](https://portal.azure.com), go to the management pane for your Azure App Service app.
2121

2222
From the left menu, select **Deployment Center** > **Settings**.
2323

@@ -47,7 +47,7 @@ After you authorize your Azure account with GitHub, select the **Organization**,
4747
4848
To deploy a multi-container (Docker Compose) app, select **Docker Compose** in **Container Type**.
4949

50-
If you don't see the **Container Type** dropdown, scroll back up to **Source** and select **Container Registry**.
50+
If you don't see the **Container Type** dropdown list, scroll back up to **Source** and select **Container Registry**.
5151
::: zone-end
5252

5353
In **Registry source**, select where your container registry is. If it's not Azure Container Registry or Docker Hub, select **Private Registry**.
@@ -61,21 +61,21 @@ Follow the next steps by selecting the tab that matches your choice.
6161

6262
# [Azure Container Registry](#tab/acr)
6363

64-
The **Registry** dropdown displays the registries in the same subscription as your app. Select the registry you want.
64+
The **Registry** dropdown list displays the registries in the same subscription as your app. Select the registry you want.
6565

6666
To deploy from a registry in a different subscription, select **Private Registry** in **Registry source** instead.
6767

6868
To use managed identities to lock down Azure Container Registry access, see:
6969

70-
* [How to use system-assigned managed identities with App Service and Azure Container Registry](https://github.com/Azure/app-service-linux-docs/blob/master/HowTo/use_system-assigned_managed_identities.md).
71-
* [How to use user-assigned managed identities with App Service and Azure Container Registry](https://github.com/Azure/app-service-linux-docs/blob/master/HowTo/use_user-assigned_managed_identities.md).
70+
* [How to use system-assigned managed identities with App Service and Azure Container Registry](https://github.com/Azure/app-service-linux-docs/blob/master/HowTo/use_system-assigned_managed_identities.md)
71+
* [How to use user-assigned managed identities with App Service and Azure Container Registry](https://github.com/Azure/app-service-linux-docs/blob/master/HowTo/use_user-assigned_managed_identities.md)
7272

7373
::: zone pivot="container-windows"
7474
Select the **Image** and **Tag** to deploy. You can choose to type the startup command in **Startup File**.
7575
::: zone-end
7676
::: zone pivot="container-linux"
77-
Follow the next step depending on the **Container Type**:
78-
* For **Docker Compose**, select the registry for your private images. Select **Choose file** to upload your [Docker Compose file](https://docs.docker.com/compose/compose-file/), or just **paste** the contents of your Docker Compose file into **Config**.
77+
Follow the next step, depending on the **Container Type** value:
78+
* For **Docker Compose**, select the registry for your private images. Select **Choose file** to upload your [Docker Compose file](https://docs.docker.com/compose/compose-file/), or just paste the contents of your Docker Compose file into **Config**.
7979
* For **Single Container**, select the **Image** and **Tag** to deploy. You can choose to type the startup command in **Startup File**.
8080
::: zone-end
8181

@@ -90,20 +90,20 @@ In **Repository Access**, select whether the image you want to deploy is public
9090
In **Repository Access**, select whether the image you want to deploy is public or private. For a Docker Compose app with one or more private images, select **Private**.
9191
::: zone-end
9292

93-
If you select a private image, **specify** the **Login** (username) and **Password** of the Docker account.
93+
If you select a private image, specify the **Login** (username) and **Password** values for the Docker account.
9494

9595
::: zone pivot="container-windows"
9696
Supply the image and tag name in **Full Image Name and Tag**, separated by a `:` (for example, `nginx:latest`). You can choose to type the startup command in **Startup File**.
9797
::: zone-end
9898
::: zone pivot="container-linux"
99-
Follow the next step depending on the **Container Type**:
99+
Follow the next step, depending on the **Container Type** value:
100100
* For **Docker Compose**, select the registry for your private images. Select **Choose file** to upload your [Docker Compose file](https://docs.docker.com/compose/compose-file/), or **paste** the contents of your Docker Compose file into **Config**.
101101
* For **Single Container**, supply the image and tag name in **Full Image Name and Tag**, separated by a `:` (for example, `nginx:latest`). You can choose to type the startup command in **Startup File**.
102102
::: zone-end
103103

104104
App Service appends the string in **Startup File** to [the end of the `docker run` command (as the `[COMMAND] [ARG...]` segment)](https://docs.docker.com/engine/reference/run/) when starting your container.
105105

106-
# [Private Registry](#tab/private)
106+
# [Private registry](#tab/private)
107107

108108
In **Server URL**, type the URL of the server, beginning with `https://`.
109109

@@ -113,7 +113,7 @@ In the **Login** and **Password** fields, type your sign-in credentials for your
113113
Supply the image and tag name in **Full Image Name and Tag**, separated by a `:` (for example, `nginx:latest`). You can choose to type the startup command in **Startup File**.
114114
::: zone-end
115115
::: zone pivot="container-linux"
116-
Follow the next step depending on the **Container Type**:
116+
Follow the next step, depending on the **Container Type** value:
117117
* For **Docker Compose**, select the registry for your private images. Select **Choose file** to upload your [Docker Compose file](https://docs.docker.com/compose/compose-file/), or paste the contents of your Docker Compose file into **Config**.
118118
* For **Single Container**, supply the image and tag name in **Full Image Name and Tag**, separated by a `:` (for example, `nginx:latest`). You can choose to type the startup command in **Startup File**.
119119
::: zone-end
@@ -234,7 +234,7 @@ az webapp config container set --name <app-name> --resource-group <group-name> -
234234
az webapp config container set --name <app-name> --resource-group <group-name> --docker-custom-image-name <image-name> --docker-registry-server-user <username> --docker-registry-server-password <password>
235235
```
236236

237-
# [Private Registry](#tab/private)
237+
# [Private registry](#tab/private)
238238

239239
```azurecli-interactive
240240
az webapp config container set --name <app-name> --resource-group <group-name> --docker-custom-image-name '<image>:<tag>' --docker-registry-server-url <private-repo-url> --docker-registry-server-user <username> --docker-registry-server-password <password>

0 commit comments

Comments
 (0)