chore: update itworks pipeline
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
FROM nginx:alpine
|
||||
COPY index.html /usr/share/nginx/html/index.html
|
||||
EXPOSE 80
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>It works</title>
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
background: #1a1a2e;
|
||||
font-family: monospace;
|
||||
}
|
||||
.box {
|
||||
text-align: center;
|
||||
color: #e0e0e0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 4rem;
|
||||
margin: 0;
|
||||
color: #00d4aa;
|
||||
}
|
||||
p {
|
||||
font-size: 1.1rem;
|
||||
color: #888;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.ts {
|
||||
margin-top: 2rem;
|
||||
font-size: 0.8rem;
|
||||
color: #444;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="box">
|
||||
<h1>It works!</h1>
|
||||
<p>Pipeline Docker → Harbor → Portainer OK</p>
|
||||
<div class="ts" id="ts"></div>
|
||||
</div>
|
||||
<script>
|
||||
document.getElementById('ts').textContent = new Date().toISOString();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user