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

ru.lagoshny.constants.DockerComposeCommand Maven / Gradle / Ivy

There is a newer version: 1.4
Show newest version
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