Skip to content

Commit 65a4b86

Browse files
committed
web jobs updates
1 parent 8b40273 commit 65a4b86

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

articles/app-service/webjobs-create.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ adobe-target-content: ./webjobs-create-ieux
1717

1818
# Run background tasks with WebJobs in Azure App Service
1919

20+
> [!NOTE]
21+
> WebJobs for Windows container, Linux code, and Linux container is in preview. WebJobs for Windows code is generally available and not in preview.
22+
2023
Deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. You can run background tasks in the Azure App Service.
2124

2225
If instead of the Azure App Service, you're using Visual Studio to develop and deploy WebJobs, see [Deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
@@ -34,13 +37,19 @@ Azure Functions provides another way to run programs and scripts. For a comparis
3437

3538
### <a name="acceptablefiles"></a>Supported file types for scripts or programs
3639

40+
### [Windows code](#tab/windowscode)
3741
The following file types are supported:
38-
39-
| App type | Windows code | Windows container | Linux code | Linux container |
40-
|----------|--------------|-------------------|------------|-----------------|
41-
| Supported file types |.cmd, .bat, .exe (using Windows cmd)<br>.ps1 (using PowerShell)<br>.sh (using Bash)<br>.php (using PHP)<br>.py (using Python)<br>.js (using Node.js)<br>.jar (using Java)<br>|Linux code types | Linux container types |
42-
|Description|win code | win cont | linux code | linux cont |
43-
42+
**.cmd**, **.bat**, **.exe** (using Windows cmd)<br>**.ps1** (using PowerShell)<br>**.sh** (using Bash)<br>**.php** (using PHP)<br>**.py** (using Python)<br>**.js** (using Node.js)<br>**.jar** (using Java)<br><br>The necessary runtimes to run these file types are already installed on the web app instance.
43+
### [Windows container (preview)](#tab/windowscontainer)
44+
The following file types are supported:
45+
**.cmd**, **.bat**, **.exe** (using Windows cmd)<br><br>In addition to these file types, WebJobs written in the language runtime of the Windows container app.<br>Example: .jar and .war scripts if the container is a Java app.
46+
### [Linux code (preview)](#tab/linuxcode)
47+
The following file types are supported:
48+
**.sh** (using Bash) <br><br>In addition to shell scripts (.sh), WebJobs written in the language of the selected runtime are also supported.<br>Example: Python (.py) scripts if the main site is a Python code app.
49+
### [Linux container (preview)](#tab/linuxcontainer)
50+
The following file types are supported:
51+
**.sh** (using Bash) <br><br>In addition to shell scripts (.sh), WebJobs written in the language runtime of the Linux container app are also supported. <br>Example: Node (.js) scripts if the site is a Node.js app.
52+
---
4453
### Continuous vs. triggered WebJobs
4554

4655
The following table describes the differences between *continuous* and *triggered* WebJobs:

0 commit comments

Comments
 (0)