Skip to content

Commit

Permalink
Merge pull request #6 from ennolan/main
Browse files Browse the repository at this point in the history
Update docker image file
  • Loading branch information
ennolan committed May 12, 2024
2 parents 1968f02 + 728c1fa commit f75fb8c
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
Deploy a secure webapp in a container hosted on an EC2 instance.
#
Resources:
#
Docker
#
EC2
#
Load Balancer
#
SSL Certificate

#
Expand Down
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevOps Automation Demo Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #35424a;
color: white;
text-align: center;
padding: 1em 0;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 2em;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #35424a;
color: white;
text-align: center;
padding: 1em 0;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>DevOps Automation Demo Page</h1>
</header>
<div class="container">
<h2>Welcome to DevOps Automation!</h2>
<p>Join us to learn about the latest techniques and tools in DevOps automation.</p>
<p>Stay tuned for upcoming workshops, tutorials, and insights.</p>
</div>
<footer>
<p>&copy; 2024 DevOps Automation</p>
</footer>
</body>
</html>

0 comments on commit f75fb8c

Please sign in to comment.