5 ms·
On the other side of things, my favorite demo for people new to docker who aren't yet aware that sudoless docker ~~ root access is: docker run -itv /:/host
by mclehman 7y ago
On the other side of things, my favorite demo for people new to docker who aren't yet aware that sudoless docker ~~ root access is:
docker run -itv /:/host ubuntu chroot /host
- cyphar 7y agoOr, even better use nsenter to join all the namespaces of PID 1 on the host (making your process an ordinary root process in the init namespaces).