Containers 101.md 508 B


Title: "Containers 101" Date: 2017-02-19 21:30:02 Categories: [devops] tags: [docker]

Authors: sedlav

It is helpful to remember that containers are just normal Unix processes with two special tricks... Unix starts processes by performing a fork() system call to create a new child process. The child process still contains the same program as the parent process, so the parent processes program still has control over the child...

Link