commit b5628e1a3522333d5ac40bb8bad293ad9a2a0769 Author: Alejandro Lembke Barrientos Date: Mon Sep 5 19:43:34 2022 -0600 First commit diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..bccee16 Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8acc494 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +CuestionarioKubernetes.docx +Videos de Clase +Hojas de Asistencia +Clase 2/Ejercicio/mysql-phpmyadmin +Clase 2/Clase 2.pptx \ No newline at end of file diff --git a/Clase 1/.DS_Store b/Clase 1/.DS_Store new file mode 100644 index 0000000..0b18af9 Binary files /dev/null and b/Clase 1/.DS_Store differ diff --git a/Clase 1/Clase 1.pptx b/Clase 1/Clase 1.pptx new file mode 100644 index 0000000..95d9eaf Binary files /dev/null and b/Clase 1/Clase 1.pptx differ diff --git a/Clase 1/Ejercicio/.DS_Store b/Clase 1/Ejercicio/.DS_Store new file mode 100644 index 0000000..29d4177 Binary files /dev/null and b/Clase 1/Ejercicio/.DS_Store differ 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 2/.DS_Store b/Clase 2/.DS_Store new file mode 100644 index 0000000..c1db7d3 Binary files /dev/null and b/Clase 2/.DS_Store differ diff --git a/Clase 2/Ejercicio/.DS_Store b/Clase 2/Ejercicio/.DS_Store new file mode 100644 index 0000000..9570fcf Binary files /dev/null and b/Clase 2/Ejercicio/.DS_Store differ diff --git a/Clase 2/Ejercicio/mysql/docker-compose.yaml b/Clase 2/Ejercicio/mysql/docker-compose.yaml new file mode 100644 index 0000000..9ee6f00 --- /dev/null +++ b/Clase 2/Ejercicio/mysql/docker-compose.yaml @@ -0,0 +1,16 @@ +version: '3.3' +services: + db: + image: mysql + restart: always + environment: + MYSQL_ROOT_PASSWORD: password + ports: + - '3306:3306' + expose: + - '3306' + volumes: + - my-db:/var/lib/mysql +volumes: + my-db: + external: false #if true will try to find a folder that you set \ No newline at end of file