You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the supervisor mount the /proc filesystem into a container it justs bind mounts the host's /proc into the container. This is wrong as it will expose incorrect information like PIDs from the hostOS that are invalid in the container and might confuse some applications.
A workaround is for the container to instead mount a new /proc filesystem but it requires CAP_SYS_ADMIN capabilities to mount:
When the supervisor mount the
/proc
filesystem into a container it justs bind mounts the host's/proc
into the container. This is wrong as it will expose incorrect information like PIDs from the hostOS that are invalid in the container and might confuse some applications.A workaround is for the container to instead mount a new
/proc
filesystem but it requiresCAP_SYS_ADMIN
capabilities to mount:Relates-to: https://balena.zendesk.com/agent/tickets/2728
The text was updated successfully, but these errors were encountered: