Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge remote-tracking branch 'origin/master' into for-upstream-v0.10.0
Conflicts:
	src/main/java/com/github/dockerjava/client/command/CreateContainerCmd.java
  • Loading branch information
mfulgo committed Aug 1, 2014
commit 70aba655ceed109b88d3c234e34b3bcf413962bb
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@
import com.sun.jersey.api.client.UniformInterfaceException;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.core.util.MultivaluedMapImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;


/**
Expand Down Expand Up @@ -74,6 +69,11 @@ public CreateContainerCmd withVolumesFrom(String... volumesFrom) {
return this;
}

public CreateContainerCmd withTTY(boolean tty) {
this.containerCreateConfig.withTty(tty);
return this;
}

public CreateContainerCmd withEnv(String... env) {
Preconditions.checkNotNull(env, "env was not specified");
this.containerCreateConfig.withEnv(env);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.