Skip to content

Commit bf3bdf9

Browse files
authored
Revise linuxFxVersion language stack examples and commands
Updated language stack examples and added current version command.
1 parent 46e6b30 commit bf3bdf9

1 file changed

Lines changed: 11 additions & 9 deletions

File tree

articles/app-service/provision-resource-bicep.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,17 @@ az group create --name myResourceGroup --location "southcentralus" &&
108108
az deployment group create --resource-group myResourceGroup --template-file <path-to-template>
109109
```
110110

111-
To deploy a different language stack, update `linuxFxVersion` with appropriate values. The following table lists examples. To show current versions, run the following command in Cloud Shell: `az webapp config show --resource-group myResourceGroup --name <app-name> --query linuxFxVersion`.
112-
113-
| Language | Example |
114-
|-------------|------------------------------------------------------|
115-
| .NET | `linuxFxVersion="DOTNETCORE&#124;3.0"` |
116-
| PHP | `linuxFxVersion="PHP&#124;7.4"` |
117-
| Node.js | `linuxFxVersion="NODE&#124;24"` |
118-
| Java | `linuxFxVersion="JAVA&#124;1.8 &#124;TOMCAT&#124;9.0"` |
119-
| Python | `linuxFxVersion="PYTHON&#124;3.14"` |
111+
To deploy a different language stack, update `linuxFxVersion` with appropriate values. The following table lists examples. To show the current version, run the following command in Cloud Shell: `az webapp config show --resource-group myResourceGroup --name <app-name> --query linuxFxVersion`.
112+
113+
| Language | Example |
114+
|--------|---------|
115+
| .NET | `linuxFxVersion="DOTNETCORE|8.0"` |
116+
| PHP | `linuxFxVersion="PHP|8.2"` |
117+
| Node.js | `linuxFxVersion="NODE|20-lts"` |
118+
| Java | `linuxFxVersion="TOMCAT|9.0-jre8"` |
119+
| Python | `linuxFxVersion="PYTHON|3.11"` |
120+
121+
Use the `az webapp list-runtimes --os linux` command to review the current list of supported Linux runtime values.
120122

121123
---
122124

0 commit comments

Comments
 (0)