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/app-service/webjobs-create.md
-12Lines changed: 0 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,6 @@ Deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload a
21
21
22
22
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).
23
23
24
-
> [!NOTE]
25
-
> WebJobs for **Windows container**, **Linux code**, and **Linux container** is in preview. WebJobs for Windows code is generally available and not in preview.
26
-
27
24
## Overview
28
25
29
26
WebJobs is a feature of [Azure App Service](index.yml) that enables you to run a program or script in the same instance as a web app. All app service plans support WebJobs. There's no extra cost to use WebJobs.
@@ -42,22 +39,13 @@ Azure Functions provides another way to run programs and scripts. For a comparis
42
39
The following file types are supported:<br>
43
40
**.cmd**, **.bat**, **.exe** (using Windows cmd)<br>**.ps1** (using PowerShell)<br>**.sh** (using Bash)<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.
44
41
### [Windows container](#tab/windowscontainer)
45
-
> [!NOTE]
46
-
> WebJobs for Windows container is in preview.
47
-
>
48
42
49
43
The following file types are supported:<br>
50
44
**.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.
51
45
### [Linux code](#tab/linuxcode)
52
-
> [!NOTE]
53
-
> WebJobs for Linux code is in preview.
54
-
>
55
46
56
47
**.sh** scripts are supported.<br><br>In addition to shell scripts, 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.
57
48
### [Linux container](#tab/linuxcontainer)
58
-
> [!NOTE]
59
-
> WebJobs for Linux container is in preview.
60
-
>
61
49
62
50
**.sh** scripts are supported. <br><br>In addition to shell scripts, 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.
0 commit comments