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

com.github.dockerjava.api.command.ExecCreateCmd Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.api.command;

public interface ExecCreateCmd extends DockerCmd {

    public String getContainerId();
    
    public ExecCreateCmd withContainerId(String containerId);

    public ExecCreateCmd withCmd(String... cmd);

    public ExecCreateCmd withAttachStdin(boolean attachStdin);
    
    public ExecCreateCmd withAttachStdin();
    
    public boolean hasAttachStdinEnabled();

    public ExecCreateCmd withAttachStdout(boolean attachStdout);
    
    public ExecCreateCmd withAttachStdout();
    
    public boolean hasAttachStdoutEnabled();

    public ExecCreateCmd withAttachStderr(boolean attachStderr);
    
    public ExecCreateCmd withAttachStderr();
    
    public boolean hasAttachStderrEnabled();

    public ExecCreateCmd withTty(boolean tty);
    
    public ExecCreateCmd withTty();
    
    public boolean hasTtyEnabled();

    public static interface Exec extends DockerCmdExec {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy