@@ -70,6 +70,12 @@ useful.
7070 explains how Linux features such as ` cgroups ` , ` chroot ` and namespaces
7171 are used by container implementations.
7272
73+ * [ Container networking is simple] ( https://iximiuz.com/en/posts/container-networking-is-simple/ )
74+ shows that container networking is nothing more than a simple combination
75+ of the well-known Linux facilities such as network namespaces, virtual
76+ Ethernet devices (veth), virtual network switches (bridge) and
77+ IP routing and network address translation (NAT).
78+
7379* [ Running containers without Docker] ( https://jvns.ca/blog/2016/10/26/running-container-without-docker/ )
7480 reviews a migration path for an organization that already has a bunch of
7581 infrastructure but sees advantages in using containers. However, the
@@ -115,6 +121,13 @@ Container security is a hot topic because there are so many ways of screwing
115121it up, just like any infrastructure that runs your applications. These
116122resources explain security considerations specific to containers.
117123
124+ * [ A Practical Introduction to Container Security] ( https://cloudberry.engineering/article/practical-introduction-container-security/ )
125+ examines security at build time for projects and how to
126+ minimize the risk of supply chain attack. It then goes into
127+ infrastructure and runtime security where you need to understand
128+ different attack vectors and minimize malicious attempts against
129+ your containers during these phases..
130+
118131* [ Building Container Images Securely on Kubernetes] ( https://blog.jessfraz.com/post/building-container-images-securely-on-kubernetes/ )
119132 discusses some of the issues with building containers and why the
120133 author created [ img] ( https://github.com/genuinetools/img ) as a tool
0 commit comments