com.github.dockerjava.api.command.CreateImageCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.docker-java
Show all versions of org.apache.servicemix.bundles.docker-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.github.dockerjava.api.command;
import java.io.InputStream;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
public interface CreateImageCmd extends SyncDockerCmd {
@CheckForNull
String getRepository();
@CheckForNull
String getTag();
@CheckForNull
InputStream getImageStream();
/**
* @param repository
* the repository to import to
*/
CreateImageCmd withRepository(@Nonnull String repository);
/**
* @param imageStream
* the InputStream of the tar file
*/
CreateImageCmd withImageStream(InputStream imageStream);
/**
* @param tag
* any tag for this image
* @deprecated use repo:tag format for repository
*/
CreateImageCmd withTag(String tag);
interface Exec extends DockerCmdSyncExec {
}
}