diff --git a/Clase 1/Ejercicio/Dockerfile b/Clase 1/Ejercicio/Dockerfile new file mode 100644 index 0000000..bde780c --- /dev/null +++ b/Clase 1/Ejercicio/Dockerfile @@ -0,0 +1,2 @@ +FROM httpd:2.4 +COPY ./public-html/ /usr/local/apache2/htdocs/ \ No newline at end of file diff --git a/Clase 1/Ejercicio/public-html/index.html b/Clase 1/Ejercicio/public-html/index.html new file mode 100644 index 0000000..096aa96 --- /dev/null +++ b/Clase 1/Ejercicio/public-html/index.html @@ -0,0 +1,12 @@ + + + + + + + Prueba + + +

Esta es una prueba de Docker

+ + \ No newline at end of file diff --git a/Clase 1/README.md b/Clase 1/README.md new file mode 100644 index 0000000..cdb0f95 --- /dev/null +++ b/Clase 1/README.md @@ -0,0 +1,21 @@ +# Clase 1 +![Diap1](./img/Diap1.png) +![Diap2](./img/Diap2.png) +![Diap3](./img/Diap3.png) +![Diap4](./img/Diap4.png) +![Diap5](./img/Diap5.png) +![Diap6](./img/Diap6.png) + +### Comandos: +Crear un Dockerfile con este contenido: +``` +FROM httpd:2.4 +COPY ./public-html/ /usr/local/apache2/htdocs/ +``` +Correr Comandos: +``` +docker build -t my-apache2 . +docker run -dit --name my-running-app -p 8080:80 my-apache2 +``` + +![Diap6](../img/Agradecimiento.png) diff --git a/Clase 1/img/Diap1.png b/Clase 1/img/Diap1.png new file mode 100644 index 0000000..3f4ecad Binary files /dev/null and b/Clase 1/img/Diap1.png differ diff --git a/Clase 1/img/Diap2.png b/Clase 1/img/Diap2.png new file mode 100644 index 0000000..74ca9ca Binary files /dev/null and b/Clase 1/img/Diap2.png differ diff --git a/Clase 1/img/Diap3.png b/Clase 1/img/Diap3.png new file mode 100644 index 0000000..b950ff0 Binary files /dev/null and b/Clase 1/img/Diap3.png differ diff --git a/Clase 1/img/Diap4.png b/Clase 1/img/Diap4.png new file mode 100644 index 0000000..30fc5ad Binary files /dev/null and b/Clase 1/img/Diap4.png differ diff --git a/Clase 1/img/Diap5.png b/Clase 1/img/Diap5.png new file mode 100644 index 0000000..a8b61e7 Binary files /dev/null and b/Clase 1/img/Diap5.png differ diff --git a/Clase 1/img/Diap6.png b/Clase 1/img/Diap6.png new file mode 100644 index 0000000..f837ddb Binary files /dev/null and b/Clase 1/img/Diap6.png differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..753a599 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Curso Básico de Kubernetes +Este es un curso básico de Kubernetes impartido por el Lic. Alejandro Lembke Barrientos. + +![Curso Básico Kubernetes](./img/CursoBasico.png) +![Alejandro Lembke Barrientos](./img/Alejandro.png) +![Dinamica](./img/Dinamica.png) diff --git a/img/Agradecimiento.png b/img/Agradecimiento.png new file mode 100644 index 0000000..14759eb Binary files /dev/null and b/img/Agradecimiento.png differ diff --git a/img/Alejandro.png b/img/Alejandro.png new file mode 100644 index 0000000..a4474fa Binary files /dev/null and b/img/Alejandro.png differ diff --git a/img/CursoBasico.png b/img/CursoBasico.png new file mode 100644 index 0000000..bdfd231 Binary files /dev/null and b/img/CursoBasico.png differ diff --git a/img/Dinamica.png b/img/Dinamica.png new file mode 100644 index 0000000..e1bd3c0 Binary files /dev/null and b/img/Dinamica.png differ