Interface WebApp.DefinitionStages.WithContainerImage
- All Known Subinterfaces:
WebApp.Definition, WebApp.DefinitionStages.WithLinuxAppFramework, WebApp.DefinitionStages.WithWindowsAppFramework
- Enclosing interface:
WebApp.DefinitionStages
public static interface WebApp.DefinitionStages.WithContainerImage
A web app definition allowing container image source to be specified.
-
Method Summary
Modifier and TypeMethodDescriptionwithPrivateDockerHubImage(String imageAndTag) Specifies the docker container image to be one from Docker Hub.withPrivateRegistryImage(String imageAndTag, String serverUrl) Specifies the docker container image to be one from a private registry.withPublicDockerHubImage(String imageAndTag) Specifies the docker container image to be one from Docker Hub.
-
Method Details
-
withPublicDockerHubImage
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 definition
-
withPrivateDockerHubImage
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 definition
-
withPrivateRegistryImage
WebApp.DefinitionStages.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 definition
-