Class CommonContainerProperties
- java.lang.Object
-
- com.playtika.test.common.properties.CommonContainerProperties
-
@Validated public abstract class CommonContainerProperties extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCommonContainerProperties.CopyFilePropertiesCopy a local file or directory from the classpath into the container.static classCommonContainerProperties.MountVolumeMount a local file or directory from the host as a container volume with READ_ONLY or READ_WRITE access mode.static classCommonContainerProperties.TmpFs
-
Constructor Summary
Constructors Constructor Description CommonContainerProperties()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract StringgetDefaultDockerImage()Specify default Docker image that is used by org.testcontainers:xyz module, so that we can mark your custom image as a compatible with the default one.DurationgetTimeoutDuration()
-
-
-
Method Detail
-
getTimeoutDuration
public Duration getTimeoutDuration()
-
getDefaultDockerImage
public abstract String getDefaultDockerImage()
Specify default Docker image that is used by org.testcontainers:xyz module, so that we can mark your custom image as a compatible with the default one.For more details check
ContainerUtils.getDockerImageName(com.playtika.test.common.properties.CommonContainerProperties).
-
-