All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.kit.kastel.mcse.ardoco.docker.DockerContainer Maven / Gradle / Ivy

There is a newer version: 0.31.12
Show newest version
/* Licensed under MIT 2022-2023. */
package edu.kit.kastel.mcse.ardoco.docker;

public record DockerContainer(String id, String image, String status, String name) {
    public boolean isRunning() {
        return status().startsWith("Up");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy