Skip to content

Commit

Permalink
Adding pragmatic container security overview blog
Browse files Browse the repository at this point in the history
  • Loading branch information
doomholderz committed Jun 19, 2024
1 parent 02ca9c5 commit 14570b1
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 5 deletions.
60 changes: 60 additions & 0 deletions blogs/intro_pragmatic_container_security_guide.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>doomholderz - Pragmatic Container Security Guide</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<div class="container">
<h1 id="guide-to-pragmatic-container-security">Guide to
Pragmatic Container Security</h1>
<h3 id="intro">Intro</h3>
<p>This is a guide for pragmatically improving your container
security capabilities, with guidance on all tenets of container
security.</p>
<p>Great effort has been made to zero-in on the
highest-impacting controls to reduce risk associated with
container workloads, providing a practical roadmap for
implementing strong container security.</p>
<p>Each recommendation will be supplemented with: how to
implement; what risk is <em>actually</em> mitigated through
implementing; further steps you can take to mature this control
(where appropriate).</p>
<h3 id="wtf-is-container-security">WTF <em>is</em> Container
Security</h3>
<p>The <em>tl;dr</em> is that container security is our software
supply-chain security.</p>
<p>The <em>l;r</em> is that container security is the practice
of ensuring that we are:</p>
<ul>
<li>Building secure container images</li>
<li>Securing container pipelines</li>
<li>Securing container registries</li>
<li>Building and maintaining secure container deployment
environments</li>
<li>Enforcing secure container runtimes</li>
<li>Monitoring our containers for security incidents</li>
<li>Securing container orchestration tools used to manage
containers</li>
</ul>
<h3 id="how-to-use-this-guide">How to use this Guide</h3>
<p>This guide will be split into the specific domains of
container security:</p>
<ul>
<li><p>Container image security (coming later)</p></li>
<li><p>Container registry security (coming later)</p></li>
<li><p>Container runtime security
<code>(coming soon)</code></p></li>
<li><p>Container monitoring (coming later)`</p></li>
</ul>
<p>Included in each recommendation will be steps to implement
for Docker deployment of containers, and Kubernetes
deployments.</p>
<p>It’s recommended to audit your adherence to all requirements
listed, and then work through the gaps systematically. Or just
free-wheel it, different strokes I guess…</p>
</div>
</body>
</html>
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
<body>
<div class="container">
<h1>doomholderz Security Blog</h1>
<p class="center_p"><b>Security engineer, sharing interesting things here</b></p>
<nav>
<ul>
<li><a href="/blogs">Blogs</a></li>
<li><a href="/blogs/container_security_intro.html">Container Security Intro</a></li>
<li style="list-style-type:none"><a href="/blogs">Blogs</a></li>
<li style="list-style-type:none"><a href="/blogs/container_security_intro.html">Container Security Intro</a></li>
</ul>
</nav>
</div>
Expand Down
28 changes: 25 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ h1, h2, h3, h4, h5, h6 {
margin: 20px 0;
}

.center_p {
text-align:center;
background-color:grey;
}

h3 {
text-align: left;
margin-left:20px;
padding:0;
}

nav {
text-align: center;
margin: 20px 0;
Expand All @@ -32,12 +43,17 @@ nav a:hover {
}

ul {
list-style-type: none;
padding: 0;
/* list-style-type: none; */
padding-left:50px;
}

ul li {
margin: 10px 0;
margin: 0px 0;
}

li p {
margin:0px;
margin-left:-10px;
}

a {
Expand All @@ -61,6 +77,12 @@ a:hover {
padding: 0 20px; /* Added padding for body text */
}

code {
background-color: #555555; /* Light grey background */
color: white; /* Red font color */
font-size:13px;
}

footer {
text-align: center;
margin-top: 20px;
Expand Down

0 comments on commit 14570b1

Please sign in to comment.