Uses of Class
com.spotify.docker.client.DockerClient.BuildParam
Packages that use DockerClient.BuildParam
-
Uses of DockerClient.BuildParam in com.spotify.docker.client
Methods in com.spotify.docker.client that return DockerClient.BuildParamModifier and TypeMethodDescriptionstatic DockerClient.BuildParam
DockerClient.BuildParam.cpusetCpus
(Integer cpusetCpus) CPUs in which to allow execution, e.g.static DockerClient.BuildParam
CPU shares (relative weight).static DockerClient.BuildParam
Create a custom parameter.static DockerClient.BuildParam
DockerClient.BuildParam.dockerfile
(Path dockerfile) path within the build context to the Dockerfile.static DockerClient.BuildParam
DockerClient.BuildParam.forceRm()
Always remove intermediate containers.static DockerClient.BuildParam
Set memory limit for build.static DockerClient.BuildParam
Repository name (and optionally a tag) to be applied to the resulting image in case of success.static DockerClient.BuildParam
DockerClient.BuildParam.noCache()
Do not use the cache when building the image.static DockerClient.BuildParam
DockerClient.BuildParam.pullNewerImage()
Always attempt to pull a newer version of the base image even if one exists locally.static DockerClient.BuildParam
DockerClient.BuildParam.quiet()
Suppress verbose build output.static DockerClient.BuildParam
A Git repository URI or HTTP/HTTPS URI build source.static DockerClient.BuildParam
DockerClient.BuildParam.rm()
Remove intermediate containers after a successful build.static DockerClient.BuildParam
DockerClient.BuildParam.rm
(boolean rm) Control whether to remove intermediate containers after a successful build.static DockerClient.BuildParam
DockerClient.BuildParam.totalMemory
(Integer totalMemory) Total memory (memory + swap).Methods in com.spotify.docker.client with parameters of type DockerClient.BuildParamModifier and TypeMethodDescriptionDefaultDockerClient.build
(Path directory, DockerClient.BuildParam... params) DefaultDockerClient.build
(Path directory, ProgressHandler handler, DockerClient.BuildParam... params) DefaultDockerClient.build
(Path directory, String name, DockerClient.BuildParam... params) DefaultDockerClient.build
(Path directory, String name, ProgressHandler handler, DockerClient.BuildParam... params) DefaultDockerClient.build
(Path directory, String name, String dockerfile, ProgressHandler handler, DockerClient.BuildParam... params) DockerClient.build
(Path directory, DockerClient.BuildParam... params) Build a docker image.DockerClient.build
(Path directory, ProgressHandler handler, DockerClient.BuildParam... params) Build a docker image.DockerClient.build
(Path directory, String name, DockerClient.BuildParam... params) Build a docker image.DockerClient.build
(Path directory, String name, ProgressHandler handler, DockerClient.BuildParam... params) Build a docker image.DockerClient.build
(Path directory, String name, String dockerfile, ProgressHandler handler, DockerClient.BuildParam... params) Build a docker image.