ru.lagoshny.constants.DockerComposeCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-compose-maven-plugin Show documentation
Show all versions of docker-compose-maven-plugin Show documentation
This is plugin for connect docker-compose to maven lifecycle
package ru.lagoshny.constants;
/**
* Enum with docker-compose commands
*
* Date: 2/13/18
* Time: 10:29 AM
*
* @author [email protected]
* @version 1.0
*/
public enum DockerComposeCommand {
START("start"),
STOP("stop"),
UP("up"),
DOWN("down"),
BUILD("build");
private String value;
DockerComposeCommand(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy