Talk:Docker
The sourcecode of this page has some commented-out information, which would actually be useful to include - I encountered problems with docker which would have been resolved by this commented-out information. Is there a reason not to include it? See below:
you'll need to disable some kernel security flags: sysctl -w kernel.grsecurity.chroot_caps=0 sysctl -w kernel.grsecurity.chroot_deny_chmod=0 sysctl -w kernel.grsecurity.chroot_deny_chroot=0 sysctl -w kernel.grsecurity.chroot_deny_mknod=0 sysctl -w kernel.grsecurity.chroot_deny_mount=0
Without the sysctl -w kernel.grsecurity.chroot_deny_chmod=0, I had error: Error pulling image (jessie) from docker.io/library/debian, ApplyLayer exit status 1 stdout: stderr: chmod /bin/mount: permission denied
-- KarlMW