public static interface FunctionApp.DefinitionStages.WithDockerContainerImage
| Modifier and Type | Method and Description |
|---|---|
FunctionApp.DefinitionStages.WithCreate |
withBuiltInImage(FunctionRuntimeStack runtimeStack)
Specifies the docker container image to be a built in one.
|
FunctionApp.DefinitionStages.WithCredentials |
withPrivateDockerHubImage(String imageAndTag)
Specifies the docker container image to be one from Docker Hub.
|
FunctionApp.DefinitionStages.WithCredentials |
withPrivateRegistryImage(String imageAndTag,
String serverUrl)
Specifies the docker container image to be one from a private registry.
|
FunctionApp.DefinitionStages.WithCreate |
withPublicDockerHubImage(String imageAndTag)
Specifies the docker container image to be one from Docker Hub.
|
FunctionApp.DefinitionStages.WithCreate withBuiltInImage(FunctionRuntimeStack runtimeStack)
runtimeStack - the runtime stack installed on the imageFunctionApp.DefinitionStages.WithCreate withPublicDockerHubImage(String imageAndTag)
imageAndTag - image and optional tag (eg 'image:tag')FunctionApp.DefinitionStages.WithCredentials withPrivateDockerHubImage(String imageAndTag)
imageAndTag - image and optional tag (eg 'image:tag')FunctionApp.DefinitionStages.WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl)
imageAndTag - image and optional tag (eg 'image:tag')serverUrl - the URL to the private registry server/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/