edu.kit.kastel.mcse.ardoco.docker.DockerContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker Show documentation
Show all versions of docker Show documentation
Docker Handling for the ArDoCo Project
/* 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