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 java.util.Map;
import javax.annotation.CheckForNull;
import com.github.dockerjava.api.model.Image;
/**
* List images
*/
public interface ListImagesCmd extends SyncDockerCmd> {
@CheckForNull
Map> getFilters();
String getImageNameFilter();
@CheckForNull
Boolean hasShowAllEnabled();
/**
* Show all images (by default filter out the intermediate images used to build)
*/
ListImagesCmd withShowAll(Boolean showAll);
ListImagesCmd withImageNameFilter(String imageName);
/**
* Filter dangling images
*/
ListImagesCmd withDanglingFilter(Boolean dangling);
/**
* @param labels
* - string array in the form ["key"] or ["key=value"] or a mix of both
*/
ListImagesCmd withLabelFilter(String... label);
/**
* @param labels
* - {@link Map} of labels that contains label keys and values
*/
ListImagesCmd withLabelFilter(Map labels);
interface Exec extends DockerCmdSyncExec> {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy