com.github.dockerjava.api.command.ListImagesCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.api.command;
import java.util.List;
import com.github.dockerjava.api.model.Image;
/**
* List images
*
* @param showAll - Show all images (by default 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 DockerCmd> {
public String getFilters();
public boolean hasShowAllEnabled();
public ListImagesCmd withShowAll(boolean showAll);
public ListImagesCmd withFilters(String filters);
public static interface Exec extends DockerCmdExec> {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy