WebApp.UpdateStages.WithDockerContainerImage Interface

public interface WithDockerContainerImage

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

Method Summary

Modifier and Type Method and Description
WebApp.Update withBuiltInImage(RuntimeStack runtimeStack)

Specifies the docker container image to be a built in one.

WebApp.UpdateStages.WithCredentials withPrivateDockerHubImage(String imageAndTag)

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

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

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

WebApp.UpdateStages.WithStartUpCommand withPublicDockerHubImage(String imageAndTag)

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

Method Details

withBuiltInImage

public Update withBuiltInImage(RuntimeStack runtimeStack)

Specifies the docker container image to be a built in one.

Parameters:

runtimeStack - the runtime stack installed on the image

Returns:

the next stage of the web app update

withPrivateDockerHubImage

public 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 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 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