forked from MA-Barracas/MA-Barracas.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (97 loc) · 3.5 KB
/
index.html
File metadata and controls
104 lines (97 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Fundamentals - Docker, clase del Máster de Data en EDEM">
<meta name="author" content="MA-Barracas">
<title>Fundamentals - Docker | EDEM</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #007BFF;
padding: 20px;
text-align: center;
color: white;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
header p {
margin: 5px 0 0 0;
}
section {
margin: 20px auto;
max-width: 800px;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
section h2 {
color: #007BFF;
}
section a {
color: #17a2b8;
text-decoration: none;
font-weight: bold;
}
section a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<header>
<h1>Fundamentals - Docker</h1>
<p>Máster de Data | EDEM</p>
</header>
<section>
<h2>Material de la Clase</h2>
<p>En esta asignatura, aprenderás los fundamentos de Docker y la gestión de contenedores. A continuación, puedes encontrar las diapositivas y materiales que utilizaremos durante las clases.</p>
<h3>Diapositivas de Teoría</h3>
<ul>
<li><a href="https://github.com/MA-Barracas/MA-Barracas.github.io/blob/main/1%20-%20Intro%20containers.pptx">Diapositiva Teoría 1: Introducción a Contenedores</a></li>
<li><a href="https://github.com/MA-Barracas/MA-Barracas.github.io/blob/main/2%20-%20Containers.pptx">Diapositiva Teoría 2: Contenedores</a></li>
<li><a href="https://github.com/MA-Barracas/MA-Barracas.github.io/blob/main/3%20-%20Containers%20Management.pptx">Diapositiva Teoría 3: Gestión de Contenedores</a></li>
</ul>
<h3>Cheatsheets</h3>
<ul>
<li><a href="https://github.com/MA-Barracas/MA-Barracas.github.io/blob/main/docker_cheatsheet.pdf">Cheatsheet de Docker</a></li>
<li><a href="https://github.com/MA-Barracas/MA-Barracas.github.io/blob/main/docker-cheatsheet.md">Cheatsheet Docker Visual + Compose</a></li>
</ul>
<h3>Ejemplos</h3>
<ul>
<li><a href="https://github.com/MA-Barracas/MA-Barracas.github.io/blob/main/ejemplo_server_python.md">Ejemplo: Servidor Sencillo en Python</a></li>
<li><a href="https://github.com/MA-Barracas/MA-Barracas.github.io/tree/main/pruebas/DOCKER%20COMPOSE">Carpeta con Ejemplos Docker Compose</a></li>
</ul>
</section>
<footer>
<p>© 2024 MA-Barracas | <a href="https://github.com/MA-Barracas/MA-Barracas.github.io">Repositorio en GitHub</a></p>
</footer>
</body>
</html>