69 lines
1.7 KiB
HTML
69 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Mount erfolgreich</title>
|
|
<style>
|
|
|
|
:root {
|
|
--bg: #022c22;
|
|
--card: #064e3b;
|
|
--accent: #34d399;
|
|
--text: #ecfdf5;
|
|
}
|
|
body {
|
|
font-family: sans-serif;
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
.card {
|
|
background-color: var(--card);
|
|
padding: 2rem;
|
|
border-radius: 1rem;
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
|
|
max-width: 600px;
|
|
}
|
|
h1 {
|
|
color: var(--accent);
|
|
font-size: 2.2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
p {
|
|
line-height: 1.6;
|
|
opacity: 0.9;
|
|
}
|
|
.ok {
|
|
font-size: 3rem;
|
|
margin: 1rem 0;
|
|
}
|
|
footer {
|
|
position: absolute;
|
|
bottom: 1rem;
|
|
font-size: 0.8rem;
|
|
opacity: 0.5;
|
|
}
|
|
@media (max-width: 600px) {
|
|
h1 { font-size: 1.8rem; }
|
|
.card { margin: 1rem; padding: 1.5rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<div class="ok">✅</div>
|
|
<h1>Mount erfolgreich!</h1>
|
|
<p>Das Verzeichnis docker-fobi/webroot wurde korrekt in den Container eingebunden.<br>
|
|
Nginx kann auf deine Dateien zugreifen und sie ausliefern.</p>
|
|
<p>→ Du könntest nun weitere HTML-Dateien über diesen Ordner bereitstellen, ohne sie einzeln in den Container kopieren zu müssen nach (je)dem Start.</p>
|
|
</div>
|
|
<footer>Demo für ZSL-Docker-Lernende</footer>
|
|
</body>
|
|
</html>
|