Sergio_Istea

que es una imagen docker

Jul 3rd, 2025
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Imágenes Docker</title>
  6. <style>
  7. body {
  8. background-color: #222;
  9. color: #eee;
  10. font-family: Arial, sans-serif;
  11. text-align: center;
  12. padding: 50px;
  13. }
  14. h1 {
  15. color: #00ffff;
  16. font-size: 3em;
  17. }
  18. p {
  19. color: #ffcc00;
  20. font-size: 1.5em;
  21. max-width: 600px;
  22. margin: 20px auto;
  23. }
  24. .highlight {
  25. color: #ff3366;
  26. font-weight: bold;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <h1>¿Qué es una imagen Docker?</h1>
  32. <p>
  33. Una <span class="highlight">imagen Docker</span> es una plantilla que contiene todo lo necesario para ejecutar una aplicación:
  34. su sistema de archivos, dependencias y configuraciones. Desde esta imagen se crean los contenedores,
  35. que son instancias ligeras y portables listas para funcionar.
  36. </p>
  37. </body>
  38. </html>
  39.  
Advertisement
Add Comment
Please, Sign In to add comment