mirror of https://github.com/docker/docs.git
Close the containers stdin when the process dies
This commit is contained in:
parent
7efde5eb83
commit
4760749402
|
@ -382,6 +382,11 @@ func (container *Container) monitor() {
|
||||||
if err := container.releaseNetwork(); err != nil {
|
if err := container.releaseNetwork(); err != nil {
|
||||||
log.Printf("%v: Failed to release network: %v", container.Id, err)
|
log.Printf("%v: Failed to release network: %v", container.Id, err)
|
||||||
}
|
}
|
||||||
|
if container.Config.OpenStdin {
|
||||||
|
if err := container.stdin.Close(); err != nil {
|
||||||
|
Debugf("%s: Error close stdin: %s", container.Id, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
if err := container.stdout.Close(); err != nil {
|
if err := container.stdout.Close(); err != nil {
|
||||||
Debugf("%s: Error close stdout: %s", container.Id, err)
|
Debugf("%s: Error close stdout: %s", container.Id, err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue