com.fitbur.github.dockerjava.api.command.ListImagesCmd Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api.com.fitburmand;
import java.util.List;
import com.fitbur.github.dockerjava.api.model.Image;
/**
* List images
*
* @param showAll
* - Show all images (by com.fitburfault filter out the intermediate images used to build)
* @param filters
* - a json encoded value of the filters (a map[string][]string) to process on the images list.
*/
public interface ListImagesCmd extends SyncDockerCmd> {
public String getFilters();
public boolean hasShowAllEnabled();
public ListImagesCmd withShowAll(boolean showAll);
public ListImagesCmd withFilters(String filters);
public static interface Exec extends DockerCmdSyncExec> {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy