Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="es">
- <head>
- <meta charset="UTF-8">
- <title>Imágenes Docker</title>
- <style>
- body {
- background-color: #222;
- color: #eee;
- font-family: Arial, sans-serif;
- text-align: center;
- padding: 50px;
- }
- h1 {
- color: #00ffff;
- font-size: 3em;
- }
- p {
- color: #ffcc00;
- font-size: 1.5em;
- max-width: 600px;
- margin: 20px auto;
- }
- .highlight {
- color: #ff3366;
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <h1>¿Qué es una imagen Docker?</h1>
- <p>
- Una <span class="highlight">imagen Docker</span> es una plantilla que contiene todo lo necesario para ejecutar una aplicación:
- su sistema de archivos, dependencias y configuraciones. Desde esta imagen se crean los contenedores,
- que son instancias ligeras y portables listas para funcionar.
- </p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment