We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2b68c5 + 962f9b4 commit 70aba65Copy full SHA for 70aba65
src/main/java/com/github/dockerjava/client/command/CreateContainerCmd.java
@@ -69,6 +69,11 @@ public CreateContainerCmd withVolumesFrom(String... volumesFrom) {
69
return this;
70
}
71
72
+ public CreateContainerCmd withTTY(boolean tty) {
73
+ this.containerCreateConfig.withTty(tty);
74
+ return this;
75
+ }
76
+
77
public CreateContainerCmd withEnv(String... env) {
78
Preconditions.checkNotNull(env, "env was not specified");
79
this.containerCreateConfig.withEnv(env);
0 commit comments