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/deploy-container-github-action.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -186,15 +186,17 @@ jobs:
186
186
187
187
## Deploy to an App Service container
188
188
189
-
To deploy your image to a custom container in App Service, use the `azure/webapps-deploy@v2` action. This action has five parameters:
189
+
To deploy your image to a custom container in App Service, use the `azure/webapps-deploy@v2` action. This action has seven parameters:
190
190
191
191
| **Parameter** | **Explanation** |
192
192
|---------|---------|
193
193
| **app-name** | (Required) Name of the App Service app |
194
-
| **publish-profile** | (Optional) Publish profile file contents with Web Deploy secrets |
195
-
| **images** | Fully qualified container image(s) name. For example, 'myregistry.azurecr.io/nginx:latest' or 'python:3.7.2-alpine/'. For multi-container scenario multiple container image names can be provided (multi-line separated) |
194
+
| **publish-profile** | (Optional) Applies to Web Apps(Windows and Linux) and Web App Containers(linux). Multi container scenario not supported. Publish profile (\*.publishsettings) file contents with Web Deploy secrets |
196
195
| **slot-name** | (Optional) Enter an existing Slot other than the Production slot |
197
-
| **configuration-file** | (Optional) Path of the Docker-Compose file |
196
+
| **package** | (Optional) Applies to Web App only: Path to package or folder. \*.zip, \*.war, \*.jar or a folder to deploy |
197
+
| **images** | (Required) Applies to Web App Containers only: Specify the fully qualified container image(s) name. For example, 'myregistry.azurecr.io/nginx:latest' or 'python:3.7.2-alpine/'. For a multi-container app, multiple container image names can be provided (multi-line separated) |
198
+
| **configuration-file** | (Optional) Applies to Web App Containers only: Path of the Docker-Compose file. Should be a fully qualified path or relative to the default working directory. Required for multi-container apps. |
199
+
| **startup-command** | (Optional) Enter the start-up command. For ex. dotnet run or dotnet filename.dll |
198
200
199
201
# [Publish profile](#tab/publish-profile)
200
202
@@ -283,4 +285,4 @@ You can find our set of Actions grouped into different repositories on GitHub, e
0 commit comments