Skip to content

Commit f4cf305

Browse files
authored
Merge pull request #63100 from nakazax/nakazax-patch-1
Update deploy-container-github-action.md
2 parents b025a32 + 365e8eb commit f4cf305

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

articles/app-service/deploy-container-github-action.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,17 @@ jobs:
186186

187187
## Deploy to an App Service container
188188

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:
190190

191191
| **Parameter** | **Explanation** |
192192
|---------|---------|
193193
| **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 |
196195
| **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 |
198200

199201
# [Publish profile](#tab/publish-profile)
200202

@@ -283,4 +285,4 @@ You can find our set of Actions grouped into different repositories on GitHub, e
283285

284286
- [K8s deploy](https://github.com/Azure/k8s-deploy)
285287

286-
- [Starter Workflows](https://github.com/actions/starter-workflows)
288+
- [Starter Workflows](https://github.com/actions/starter-workflows)

0 commit comments

Comments
 (0)