containers / fuse-overlayfs

FUSE implementation for overlayfs
GNU General Public License v2.0
522 stars 84 forks source link

Support running fuse-overlayfs without the open fds 0, 1 and 2 #417

Open typeless opened 6 months ago

typeless commented 6 months ago

When running fuse-overlayfs with redirections <&- >&- 2>&-, the files don't show up at the mount point even though the command exits with a success.

To make it work, one has to run the command with </dev/null >/dev/null 2>/dev/null.