Skip to content

Commit a58eb86

Browse files
authored
Merge pull request #194949 from cephalin/#91139
#91139
2 parents a3ac643 + 061f785 commit a58eb86

10 files changed

+10
-10
lines changed

articles/app-service/includes/tutorial-python-postgresql-app/create-app-service-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ az webapp create `
102102
---
103103

104104
* *name* &rarr; The app service name is used as both the name of the resource in Azure and to form the fully qualified domain name for your app in the form of the server endpoint `https://<app-service-name>.azurewebsites.com`. This name must be **unique across all Azure** and the only allowed characters are `A`-`Z`, `0`-`9`, and `-`. For example, use `msdocs-python-postgres-webapp-\<unique-id>` where `\<unique-id>` is any three characters.
105-
* *runtime* &rarr; The runtime specifies what version of Python your app is running. This example uses **Python 3.9**. To list all available runtimes, use the command `az webapp list-runtimes --linux --output table`.
105+
* *runtime* &rarr; The runtime specifies what version of Python your app is running. This example uses **Python 3.9**. To list all available runtimes, use the command `az webapp list-runtimes --os linux --output table`.
106106
* *plan* &rarr; Use the same *app service plan* name from **Step 2**. (`msdocs-python-postgres-webapp-plan`)
107107
* *resource-group* &rarr; Use the same resource group name from **Step 1**. (`msdocs-python-postgres-webapp-rg`)
108108

articles/app-service/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ App Service can also host web apps natively on Linux for supported application s
4040

4141
### Built-in languages and frameworks
4242

43-
App Service on Linux supports a number of language specific built-in images. Just deploy your code. Supported languages include: Node.js, Java (JRE 8 & JRE 11), PHP, Python, .NET Core, and Ruby. Run [`az webapp list-runtimes --linux`](/cli/azure/webapp#az-webapp-list-runtimes) to view the latest languages and supported versions. If the runtime your application requires is not supported in the built-in images, you can deploy it with a custom container.
43+
App Service on Linux supports a number of language specific built-in images. Just deploy your code. Supported languages include: Node.js, Java (JRE 8 & JRE 11), PHP, Python, .NET Core, and Ruby. Run [`az webapp list-runtimes --os linux`](/cli/azure/webapp#az-webapp-list-runtimes) to view the latest languages and supported versions. If the runtime your application requires is not supported in the built-in images, you can deploy it with a custom container.
4444

4545
Outdated runtimes are periodically removed from the Web Apps Create and Configuration blades in the Portal. These runtimes are hidden from the Portal when they are deprecated by the maintaining organization or found to have significant vulnerabilities. These options are hidden to guide customers to the latest runtimes where they will be the most successful.
4646

articles/app-service/tutorial-custom-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ The streamed logs look like this:
214214
::: zone pivot="container-linux"
215215

216216

217-
Azure App Service uses the Docker container technology to host both built-in images and custom images. To see a list of built-in images, run the Azure CLI command, ['az webapp list-runtimes--linux'](/cli/azure/webapp#az-webapp-list-runtimes). If those images don't satisfy your needs, you can build and deploy a custom image.
217+
Azure App Service uses the Docker container technology to host both built-in images and custom images. To see a list of built-in images, run the Azure CLI command, ['az webapp list-runtimes --os linux'](/cli/azure/webapp#az-webapp-list-runtimes). If those images don't satisfy your needs, you can build and deploy a custom image.
218218

219219
In this tutorial, you learn how to:
220220

articles/app-service/tutorial-dotnetcore-sqldb-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ az appservice plan create \
7070
Finally, create the App Service web app using the [az webapp create](/cli/azure/webapp#az-webapp-create) command.
7171

7272
* The App Service name is used as both the name of the resource in Azure and to form the fully qualified domain name for your app in the form of `https://<app service name>.azurewebsites.com`.
73-
* The runtime specifies what version of .NET your app is running. This example uses .NET 6.0 LTS. To list all available runtimes, use the command `az webapp list-runtimes --linux --output table` for Linux and `az webapp list-runtimes --output table` for Windows.
73+
* The runtime specifies what version of .NET your app is running. This example uses .NET 6.0 LTS. To list all available runtimes, use the command `az webapp list-runtimes --os linux --output table` for Linux and `az webapp list-runtimes --os windows --output table` for Windows.
7474

7575
```azurecli-interactive
7676

includes/app-service-web-create-web-app-dotnetcore-linux-no-h.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: "include file, devx-track-azurecli"
1212

1313
Create a [web app](../articles/app-service/overview.md#app-service-on-linux) in the `myAppServicePlan` App Service plan.
1414

15-
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `DOTNET|5.0`. To see all supported runtimes, run [`az webapp list-runtimes --linux`](/cli/azure/webapp).
15+
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `DOTNET|5.0`. To see all supported runtimes, run [`az webapp list-runtimes --os linux`](/cli/azure/webapp).
1616

1717
```azurecli-interactive
1818
az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app-name> --runtime 'DOTNET|5.0' --deployment-local-git

includes/app-service-web-create-web-app-nodejs-linux-no-h.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: "include file, devx-track-azurecli"
1212

1313
Create a [web app](../articles/app-service/overview.md#app-service-on-linux) in the `myAppServicePlan` App Service plan.
1414

15-
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `NODE|14-lts`. To see all supported runtimes, run [`az webapp list-runtimes --linux`](/cli/azure/webapp).
15+
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `NODE|14-lts`. To see all supported runtimes, run [`az webapp list-runtimes --os linux`](/cli/azure/webapp).
1616

1717
```azurecli-interactive
1818
az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app-name> --runtime 'NODE|14-lts' --deployment-local-git

includes/app-service-web-create-web-app-php-linux-no-h.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: "include file, devx-track-azurecli"
1414

1515
Create a [web app](../articles/app-service/overview.md#app-service-on-linux) in the `myAppServicePlan` App Service plan.
1616

17-
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp#az-webapp-create) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PHP|7.2`. To see all supported runtimes, run [`az webapp list-runtimes --linux`](/cli/azure/webapp#az-webapp-list-runtimes).
17+
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp#az-webapp-create) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PHP|7.2`. To see all supported runtimes, run [`az webapp list-runtimes --os linux`](/cli/azure/webapp#az-webapp-list-runtimes).
1818

1919
```azurecli-interactive
2020
# Bash

includes/app-service-web-create-web-app-php-no-h.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: "include file, devx-track-azurecli"
1414

1515
Create a [web app](../articles/app-service/overview.md#app-service-on-linux) in the `myAppServicePlan` App Service plan.
1616

17-
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp#az-webapp-create) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PHP|7.2`. To see all supported runtimes, run [`az webapp list-runtimes --linux`](/cli/azure/webapp#az-webapp-list-runtimes).
17+
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp#az-webapp-create) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PHP|7.2`. To see all supported runtimes, run [`az webapp list-runtimes --os linux`](/cli/azure/webapp#az-webapp-list-runtimes).
1818

1919
```azurecli-interactive
2020
# Bash

includes/app-service-web-create-web-app-python-linux-no-h.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: "include file, devx-track-azurecli"
1212

1313
Create a [web app](../articles/app-service/overview.md#app-service-on-linux) in the `myAppServicePlan` App Service plan.
1414

15-
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PYTHON|3.7`. To see all supported runtimes, run [`az webapp list-runtimes --linux`](/cli/azure/webapp).
15+
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PYTHON|3.7`. To see all supported runtimes, run [`az webapp list-runtimes --os linux`](/cli/azure/webapp).
1616

1717
```azurecli-interactive
1818
# Bash

includes/app-service-web-create-web-app-ruby-linux-no-h.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: "include file, devx-track-azurecli"
1212

1313
Create a [web app](../articles/app-service/overview.md#app-service-on-linux) in the `myAppServicePlan` App Service plan.
1414

15-
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `RUBY|2.6.2`. To see all supported runtimes, run [`az webapp list-runtimes --linux`](/cli/azure/webapp).
15+
In the Cloud Shell, you can use the [`az webapp create`](/cli/azure/webapp) command. In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `RUBY|2.6.2`. To see all supported runtimes, run [`az webapp list-runtimes --os linux`](/cli/azure/webapp).
1616

1717
```azurecli-interactive
1818
az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app-name> --runtime 'RUBY|2.6.2' --deployment-local-git

0 commit comments

Comments
 (0)