public interface BuildImageCmd extends AsyncDockerCmd<BuildImageCmd,BuildResponseItem>
TODO: http://docs.docker.com/reference/builder/#dockerignore
Modifier and Type | Interface and Description |
---|---|
static interface |
BuildImageCmd.Exec |
exec
@CheckForNull InputStream getTarInputStream()
@CheckForNull AuthConfigurations getBuildAuthConfigs()
@CheckForNull String getTag()
@CheckForNull URI getRemote()
@CheckForNull Boolean hasNoCacheEnabled()
@CheckForNull Boolean hasRemoveEnabled()
@CheckForNull Boolean isForcerm()
@CheckForNull Boolean isQuiet()
@CheckForNull Boolean hasPullEnabled()
@CheckForNull String getPathToDockerfile()
@CheckForNull Long getMemory()
@CheckForNull Long getMemswap()
@CheckForNull String getCpushares()
@CheckForNull String getCpusetcpus()
@CheckForNull Map<String,String> getBuildArgs()
@CheckForNull Long getShmsize()
@CheckForNull Map<String,String> getLabels()
BuildImageCmd withTag(String tag)
BuildImageCmd withRemote(URI remote)
BuildImageCmd withBaseDirectory(File baseDirectory)
BuildImageCmd withDockerfile(File dockerfile)
BuildImageCmd withNoCache(Boolean noCache)
BuildImageCmd withRemove(Boolean rm)
BuildImageCmd withForcerm(Boolean forcerm)
BuildImageCmd withQuiet(Boolean quiet)
BuildImageCmd withPull(Boolean pull)
BuildImageCmd withMemory(Long memory)
BuildImageCmd withMemswap(Long memswap)
BuildImageCmd withCpushares(String cpushares)
BuildImageCmd withCpusetcpus(String cpusetcpus)
BuildImageCmd withBuildArg(String key, String value)
BuildImageCmd withBuildAuthConfigs(AuthConfigurations authConfig)
BuildImageCmd withTarInputStream(@Nonnull InputStream tarInputStream)
BuildImageCmd withShmsize(Long shmsize)
BuildImageCmd withLabels(Map<String,String> labels)
Copyright © 2017. All Rights Reserved.