Interface WebApp.UpdateStages.WithContainerImage
-
- All Known Subinterfaces:
WebApp.Update,WebApp.UpdateStages.WithStartUpCommand
- Enclosing interface:
- WebApp.UpdateStages
public static interface WebApp.UpdateStages.WithContainerImageA web app update allowing container image source to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebApp.UpdateStages.WithCredentialswithPrivateDockerHubImage(String imageAndTag)Specifies the docker container image to be one from Docker Hub.WebApp.UpdateStages.WithCredentialswithPrivateRegistryImage(String imageAndTag, String serverUrl)Specifies the docker container image to be one from a private registry.WebApp.UpdateStages.WithStartUpCommandwithPublicDockerHubImage(String imageAndTag)Specifies the docker container image to be one from Docker Hub.
-
-
-
Method Detail
-
withPublicDockerHubImage
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
-
withPrivateDockerHubImage
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
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
-
-