Docker Notes
chroot The following are the building blocks of a container chroot namespaces cgroups Containers are lightweight compared to virtual machines, they make use of existing resources on the server, just the process is isolated, rather than emulating whole operating system. chroot is used to isolate the directories required for the container. It separates the directories from the host root user. chroot /new-root bash, this command fails if you try right away, that’s because new-root doesn’t have access to the bash yet. ...