com.fitbur.github.dockerjava.api.command.PullImageCmd Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api.com.fitburmand;
import com.fitbur.github.dockerjava.api.model.AuthConfig;
import com.fitbur.github.dockerjava.api.model.PullResponseItem;
/**
*
* Pull image from repository.
*
*/
public interface PullImageCmd extends AsyncDockerCmd {
public String getRepository();
public String getTag();
public String getRegistry();
public AuthConfig getAuthConfig();
public PullImageCmd withRepository(String repository);
public PullImageCmd withTag(String tag);
public PullImageCmd withRegistry(String registry);
public PullImageCmd withAuthConfig(AuthConfig authConfig);
public static interface Exec extends DockerCmdAsyncExec {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy