Uses of Interface
io.fabric8.maven.docker.model.Container
-
-
Uses of Container in io.fabric8.maven.docker
Methods in io.fabric8.maven.docker that return types with arguments of type Container Modifier and Type Method Description protected List<Container>AbstractDockerMojo. getContainersForPattern(QueryService queryService, boolean all, Matcher imageNameMatcher, Matcher containerNameMatcher, String patternConfigName) -
Uses of Container in io.fabric8.maven.docker.access
Methods in io.fabric8.maven.docker.access that return types with arguments of type Container Modifier and Type Method Description List<Container>DockerAccess. getContainersForImage(String image, boolean all)Get all containers which are build from an image.List<Container>DockerAccess. listContainers(boolean all)List all containers from the Docker server. -
Uses of Container in io.fabric8.maven.docker.access.hc
Methods in io.fabric8.maven.docker.access.hc that return types with arguments of type Container Modifier and Type Method Description List<Container>DockerAccessWithHcClient. getContainersForImage(String image, boolean all)List<Container>DockerAccessWithHcClient. listContainers(boolean all) -
Uses of Container in io.fabric8.maven.docker.model
Classes in io.fabric8.maven.docker.model that implement Container Modifier and Type Class Description classContainerDetailsclassContainersListElement -
Uses of Container in io.fabric8.maven.docker.service
Methods in io.fabric8.maven.docker.service that return Container Modifier and Type Method Description ContainerQueryService. getContainer(String containerIdOrName)Get a container running for a given container name.ContainerQueryService. getLatestContainer(List<Container> containers)Finds the latest container.ContainerQueryService. getLatestContainerForImage(String image, boolean all)Get the id of the latest container started for an imageContainerQueryService. getMandatoryContainer(String containerIdOrName)Get container by idMethods in io.fabric8.maven.docker.service that return types with arguments of type Container Modifier and Type Method Description List<Container>QueryService. getContainersForImage(String image, boolean all)Get all containers which are build from an image.List<Container>QueryService. listContainers(boolean all)List all containers on the Docker server.Method parameters in io.fabric8.maven.docker.service with type arguments of type Container Modifier and Type Method Description ContainerQueryService. getLatestContainer(List<Container> containers)Finds the latest container. -
Uses of Container in io.fabric8.maven.docker.util
Methods in io.fabric8.maven.docker.util that return types with arguments of type Container Modifier and Type Method Description static Collection<Container>ContainerNamingUtil. getContainersToStop(ImageConfiguration image, String defaultContainerNamePattern, Date buildTimestamp, Collection<Container> containers)Keep only the entry with the higest index if an indexed naming scheme for container has been chosen or if the container name pattern doesn't contain any index placeholders then filter containers (analogContainerNamingUtil.formatContainerName(ImageConfiguration, String, Date, Collection)but with stopping them in mind).
The placeholders of the containerNamePattern are resolved as follows:
%a is replaced with the image alias %n is replaced with the image name %t is replaced with any date (regex \d{10,}) %i is replaced with any number (regex \d+)Method parameters in io.fabric8.maven.docker.util with type arguments of type Container Modifier and Type Method Description static StringContainerNamingUtil. formatContainerName(ImageConfiguration image, String defaultContainerNamePattern, Date buildTimestamp, Collection<Container> existingContainers)static Collection<Container>ContainerNamingUtil. getContainersToStop(ImageConfiguration image, String defaultContainerNamePattern, Date buildTimestamp, Collection<Container> containers)Keep only the entry with the higest index if an indexed naming scheme for container has been chosen or if the container name pattern doesn't contain any index placeholders then filter containers (analogContainerNamingUtil.formatContainerName(ImageConfiguration, String, Date, Collection)but with stopping them in mind).
The placeholders of the containerNamePattern are resolved as follows:
%a is replaced with the image alias %n is replaced with the image name %t is replaced with any date (regex \d{10,}) %i is replaced with any number (regex \d+)
-