| Type Params | Return Type | Name and description |
|---|---|---|
|
java.lang.Object |
createAuthConfig(DockerRegistryCredentials registryCredentials)Creates instance of AuthConfig from the thread context classloader. |
|
java.lang.Object |
createAuthConfigurations(java.util.List<java.lang.Object> authConfigs)Creates instance of AuthConfigurations from the thread context classloader. |
|
java.lang.Object |
createBind(java.lang.String path, java.lang.String volume)Creates instance of Bind from thread context classloader. |
|
java.lang.Object |
createBinds(java.util.Map<java.lang.String, java.lang.String> binds)Creates an array of instances of Bind from thread context classloader. |
|
java.lang.Object |
createBuildImageResultCallback(org.gradle.api.logging.Logger logger)Creates the callback instance of BuildImageResultCallback from thread context classloader. |
|
java.lang.Object |
createBuildImageResultCallback(groovy.lang.Closure onNext) |
|
java.lang.Object |
createDevice(java.lang.String device)Creates instance of Device |
|
java.lang.Object |
createExecCallback(java.io.OutputStream out, java.io.OutputStream err)Creates the callback instance of ExecStartResultCallback from thread context classloader. |
|
java.lang.Object |
createExecCallback(groovy.lang.Closure onNext) |
|
java.lang.Object |
createExposedPort(java.lang.String scheme, java.lang.Integer port)Creates instance of ExposedPort from thread context classloader. |
|
java.lang.Object |
createExposedPorts(java.util.List<java.lang.Object> exposedPorts)Creates instance of ExposedPorts from thread context classloader. |
|
java.lang.Object |
createExposedPortsArray(java.util.List<DockerCreateContainer.ExposedPort> exposedPorts)Creates an array of instances of ExposedPorts from thread context classloader. |
|
java.lang.Object |
createHostConfig(java.util.Map<java.lang.String, java.lang.String> hostConfigProperties)Creates instance of Links from thread context classloader. |
|
java.lang.Object |
createInternetProtocol(java.lang.String scheme)Creates instance of InternetProtocol from thread context classloader. |
|
java.lang.Object |
createLink(java.lang.String link)Creates instance of Link from thread context classloader. |
|
java.lang.Object |
createLinks(java.util.List<java.lang.Object> links)Creates instance of Links from thread context classloader. |
|
java.lang.Object |
createLogConfig(java.lang.String type, java.util.Map<java.lang.String, java.lang.String> parameters)Creates instance of LogConfig from thread context classloader. |
|
java.lang.Object |
createLoggingCallback(org.gradle.api.logging.Logger logger)Creates the callback instance of LogContainerResultCallback from thread context classloader. |
|
java.lang.Object |
createLoggingCallback(groovy.lang.Closure onNext) |
|
java.lang.Object |
createLoggingCallback(java.io.Writer sink)Creates the callback instance of LogContainerResultCallback from thread context classloader. |
|
java.lang.Object |
createPortBinding(java.lang.String portBinding)Creates instance of PortBinding from thread context classloader. |
|
java.lang.Object |
createPorts(java.util.List<java.lang.Object> portBindings)Creates instance of Ports from thread context classloader. |
|
java.lang.Object |
createPullImageResultCallback(groovy.lang.Closure onNext)Creates the callback instance of PullImageResultCallback from thread context classloader. |
|
java.lang.Object |
createPushImageResultCallback(groovy.lang.Closure onNext)Creates the callback instance of PushImageResultCallback from thread context classloader. |
|
java.lang.Object |
createRestartPolicy(java.lang.String restartPolicy)Creates instance of RestartPolicy |
|
java.lang.Object |
createVolume(java.lang.String path)Creates instance of Volume from thread context classloader. |
|
java.lang.Object |
createVolumes(java.util.List<java.lang.Object> volumes)Creates instance of Volumes from thread context classloader. |
|
java.lang.Object |
createVolumesFrom(java.lang.String[] volumes)Creates an array of instances of VolumesFrom from thread context classloader. |
|
java.lang.Object |
createWaitContainerResultCallback(groovy.lang.Closure onNext)Creates the callback instance of WaitContainerResultCallback from thread context classloader. |
|
java.lang.Class |
loadClass(java.lang.String className)Loads class with given name from thread context classloader. |
Creates instance of AuthConfig from the thread context classloader.
registryCredentials - Registry credentialsCreates instance of AuthConfigurations from the thread context classloader.
authConfigs - Authentication configsCreates instance of Bind from thread context classloader.
path - The path on the local host to bind to the given volume.volume - The path to the volume of the container to bind to.Creates an array of instances of Bind from thread context classloader.
binds - A map of the binds to create. The keys are the path on the local host to bind
to the given volume. The values are the path to the volume of the container to bind to.Creates the callback instance of BuildImageResultCallback from thread context classloader.
logger - The logger instance which docker stream items will be printed toCreates instance of Device
a - string with serialized value which can be parsed by the Device.parse methodCreates the callback instance of ExecStartResultCallback from thread context classloader.
out - The output stream instance which docker will print the standard output toerr - The output stream instance which docker will print the standard error toCreates instance of ExposedPort from thread context classloader.
scheme - Schemeport - PortCreates instance of ExposedPorts from thread context classloader.
exposedPorts - Exposed portsCreates an array of instances of ExposedPorts from thread context classloader.
exposedPorts - Exposed portsCreates instance of Links from thread context classloader.
hostConfigProperties - a map containing all HostConfig properties to be set. The map entry key is the property name while the map entry value is the property value.Creates instance of InternetProtocol from thread context classloader.
scheme - SchemeCreates instance of Link from thread context classloader.
link - a container linkCreates instance of Links from thread context classloader.
volumes - List of LinksCreates instance of LogConfig from thread context classloader.
type - The type of log-driver to use (e.g. json-file, syslog, journald, none).parameters - Optional parameters for log-driverCreates the callback instance of LogContainerResultCallback from thread context classloader. The callback is modified to send log lines to standard out and error.
logger - The logger instance which docker stream items will be printed toCreates the callback instance of LogContainerResultCallback from thread context classloader. The callback is modified to send log lines to standard out and error.
sink - The Writer instance which docker stream items will be written toCreates instance of PortBinding from thread context classloader.
portBinding - Port bindingCreates instance of Ports from thread context classloader.
portBindings - List of PortBindingsCreates the callback instance of PullImageResultCallback from thread context classloader.
Creates the callback instance of PushImageResultCallback from thread context classloader.
Creates instance of RestartPolicy
restartPolicy - a string with serialized value which can be parsed RestartPolicy.parse methodCreates instance of Volume from thread context classloader.
path - Path to volumeCreates instance of Volumes from thread context classloader.
volumes - List of VolumesCreates an array of instances of VolumesFrom from thread context classloader.
volume - Container nameCreates the callback instance of WaitContainerResultCallback from thread context classloader.
Loads class with given name from thread context classloader.
className - Class name