com.github.dockerjava.api.command.ExecCreateCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
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