Reputation: 14641
I am interested in understanding what makes docker containers secure.
Is it because one container is separated from another and processes do not have access to each other (basically, isolation)?
Or is it the way that a process gets running? (so different than just running a binary code?)
Thanks
Upvotes: 1
Views: 243
Reputation: 15501
This deserves an answer longer than suitable for Stack Overflow :-)
Some interesting reads would be:
TL,DR: processes are isolated, but you also have to take specific steps to lock down some features, otherwise processes can break out of containers. Depending on what you want to run, those steps will be very different.
Upvotes: 4