Files
runc/runtime-linux.md
T
Mrunal Patel bd792ea559 Add fd section for linux container process
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
2015-08-29 08:33:46 -07:00

7 lines
414 B
Markdown

## 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.