Docker Primer
Docker Primer Docker is a default way Linux server software gets shipped and run today. Under the hood Docker is a thin wrapper around two old Linux kernel features: namespaces (process, network, mount, user, ...) and cgroups (resource limits). It is not a virtual machine. The container shares the host kernel. Core ...