Skip to content

Commit

Permalink
Update due to docker/client API change
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosnils committed Oct 10, 2017
1 parent e9dd97e commit de2f91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ func (d *docker) ExecAttach(instanceName string, command []string, out io.Writer
if err != nil {
return 0, err
}
resp, err := d.c.ContainerExecAttach(context.Background(), e.ID, types.ExecConfig{AttachStdout: true, AttachStderr: true, Tty: true})
resp, err := d.c.ContainerExecAttach(context.Background(), e.ID, types.ExecStartCheck{Tty: true})
if err != nil {
return 0, err
}
Expand Down

0 comments on commit de2f91a

Please sign in to comment.