mirror of https://github.com/docker/compose.git
Do not wait for exec output when using detached mode
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
ae2cc6b5b8
commit
1bd9083de6
|
@ -439,7 +439,7 @@ class TopLevelCommand(object):
|
|||
exec_id = container.create_exec(command, **create_exec_options)
|
||||
|
||||
if detach:
|
||||
container.start_exec(exec_id, tty=tty)
|
||||
container.start_exec(exec_id, tty=tty, stream=True)
|
||||
return
|
||||
|
||||
signals.set_signal_handler_to_shutdown()
|
||||
|
|
Loading…
Reference in New Issue