Interface WebApp.DefinitionStages.WithDockerContainerImage
-
- All Known Subinterfaces:
WebApp.Definition
- Enclosing interface:
- WebApp.DefinitionStages
public static interface WebApp.DefinitionStages.WithDockerContainerImageA web app definition allowing docker image source to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebApp.DefinitionStages.WithCreatewithBuiltInImage(RuntimeStack runtimeStack)Specifies the docker container image to be a built in one.WebApp.DefinitionStages.WithCredentialswithPrivateDockerHubImage(String imageAndTag)Specifies the docker container image to be one from Docker Hub.WebApp.DefinitionStages.WithCredentialswithPrivateRegistryImage(String imageAndTag, String serverUrl)Specifies the docker container image to be one from a private registry.WebApp.DefinitionStages.WithStartUpCommandwithPublicDockerHubImage(String imageAndTag)Specifies the docker container image to be one from Docker Hub.
-
-
-
Method Detail
-
withBuiltInImage
WebApp.DefinitionStages.WithCreate 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 definition
-
withPublicDockerHubImage
WebApp.DefinitionStages.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 definition
-
withPrivateDockerHubImage
WebApp.DefinitionStages.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 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
-
-