|
|
|
|
|
by emmelaich
3073 days ago
|
|
The defining characteristic of containers are constrained processes (constrained by one or more of memory, cpu, access controls..); isolated namespaces (your own tmp, root, users, process list) plus some (possibly limited) additional isolation from the rest of the hosts files and hardware. Docker adds to this
1. a packaging that lets you define what goes into a container (Dockerfile) and format (docker image) - which can be downloaded, extracted, manipulated and uploaded.
2. a way to stop (freeze) and start (thaw) a container
3. tools for controlling network capabilities within a container and between the host and container or other containers on other hosts. Those are the essentials. Kubernetes (and other tools) expand on this in terms of orchestration -- especially the internetworking aspect but also failover and load balancing. |
|