LXCFS
LXCFS, short for Linux Containers Filesystem, is a userspace filesystem used with Linux containers to provide container-specific views of certain virtual filesystems, most notably /proc and /sys. It is implemented as a FUSE (Filesystem in Userspace) module that runs on the host and serves per-container data to processes inside each container. The goal of LXCFS is to prevent leakage of host-wide information and to present resource and process data that reflects the container’s own constraints.
Functionality and behavior: LXCFS intercepts reads (and in some cases writes) to select files within /proc and
Architecture and usage: LXCFS is typically mounted as a FUSE filesystem and integrated with the container runtime
Status and scope: LXCFS originated with the LXC project to address information leakage and resource accounting