Add fd section for linux container process

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
Mrunal Patel 2015-08-21 14:45:39 -04:00 committed by Brandon Philips
parent 7c5c02ad48
commit bd792ea559
1 changed files with 6 additions and 0 deletions

6
runtime-linux.md Normal file
View File

@ -0,0 +1,6 @@
## File descriptors
By default, only the `stdin`, `stdout` and `stderr` file descriptors are kept open for the application by the runtime.
The runtime may pass additional file descriptors to the application to support features such as [socket activation](http://0pointer.de/blog/projects/socket-activated-containers.html).
Some of the file descriptors may be redirected to `/dev/null` even though they are open.