你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

WebApp.UpdateStages.WithContainerImage Interface

public static interface WebApp.UpdateStages.WithContainerImage

A web app update allowing container image source to be specified.

Method Summary

Modifier and Type Method and Description
abstract WithCredentials withPrivateDockerHubImage(String imageAndTag)

Specifies the docker container image to be one from Docker Hub.

abstract WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl)

Specifies the docker container image to be one from a private registry.

abstract WithStartUpCommand withPublicDockerHubImage(String imageAndTag)

Specifies the docker container image to be one from Docker Hub.

Method Details

withPrivateDockerHubImage

public abstract WebApp.UpdateStages.WithCredentials withPrivateDockerHubImage(String imageAndTag)

Specifies the docker container image to be one from Docker Hub.

Parameters:

imageAndTag - image and optional tag (eg 'image:tag')

Returns:

the next stage of the web app update

withPrivateRegistryImage

public abstract WebApp.UpdateStages.WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl)

Specifies the docker container image to be one from a private registry.

Parameters:

imageAndTag - image and optional tag (eg 'image:tag')
serverUrl - the URL to the private registry server

Returns:

the next stage of the web app update

withPublicDockerHubImage

public abstract WebApp.UpdateStages.WithStartUpCommand withPublicDockerHubImage(String imageAndTag)

Specifies the docker container image to be one from Docker Hub.

Parameters:

imageAndTag - image and optional tag (eg 'image:tag')

Returns:

the next stage of the web app update

Applies to