Commit a7dff834 by Daniel Lezcano Committed by Daniel Lezcano

fix /proc not mounted in debian container

Mount some systemm fs for the container. By default, /proc is no longer mounted in debian. Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
parent cd453b38
......@@ -203,6 +203,11 @@ lxc.cgroup.devices.allow = c 136:* rwm
lxc.cgroup.devices.allow = c 5:2 rwm
# rtc
lxc.cgroup.devices.allow = c 254:0 rwm
# mounts point
lxc.mount.entry=proc $rootfs/proc proc nodev,noexec,nosuid 0 0
lxc.mount.entry=devpts $rootfs/dev/pts devpts defaults 0 0
lxc.mount.entry=sysfs $rootfs/sys sysfs defaults 0 0
EOF
if [ $? -ne 0 ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment