Hacker News new | ask | show | jobs
by Matt3o12_ 4006 days ago
Docker images use the union file system. That means when a new version of that image is available, you often only pull a few megabytes from the hub because it already has the OS.

A docker container is also way more lightweight. Instead of running a full OS, you I only run one process. So your docker image starts within seconds

1 comments

Is this more like a Solaris zone or a Linux chroot-ed env?
A lot like Linux chroot, with some additional features, restrictions, and a mechanism to share them easily.