> + this.attachStdin = attachStdin;
> + return this;
> + }
> +
> + public Builder attachStdout(boolean attachStdout) {
> + this.attachStdout = attachStdout;
> + return this;
> + }
> +
> + public Builder attachStderr(boolean attachStderr) {
> + this.attachStderr = attachStderr;
> + return this;
> + }
> +
> + public Builder exposedPorts(Map<String, ?> exposedPorts) {
> + this.exposedPorts = exposedPorts;
Better create a copy with `ImmutableMap.copyOf`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10839891