diff --git a/.DS_Store b/.DS_Store index bccee16..39ba509 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index 8acc494..83eab2b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ CuestionarioKubernetes.docx Videos de Clase Hojas de Asistencia -Clase 2/Ejercicio/mysql-phpmyadmin -Clase 2/Clase 2.pptx \ No newline at end of file +Clase 3 \ No newline at end of file diff --git a/Clase 1/.DS_Store b/Clase 1/.DS_Store index 0b18af9..ef7dd80 100644 Binary files a/Clase 1/.DS_Store and b/Clase 1/.DS_Store differ diff --git a/Clase 2/Clase 2.pptx b/Clase 2/Clase 2.pptx new file mode 100644 index 0000000..b59f4f0 Binary files /dev/null and b/Clase 2/Clase 2.pptx differ diff --git a/Clase 2/Ejercicio/mysql-phpmyadmin/docker-compose.yaml b/Clase 2/Ejercicio/mysql-phpmyadmin/docker-compose.yaml new file mode 100644 index 0000000..66c8b98 --- /dev/null +++ b/Clase 2/Ejercicio/mysql-phpmyadmin/docker-compose.yaml @@ -0,0 +1,28 @@ +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 + phpmyadmin: + image: phpmyadmin/phpmyadmin + restart: always + environment: + PMA_HOSTS: db + MYSQL_ROOT_PASSWORD: password + ports: + - '8080:80' + expose: + - '80' + depends_on: + - db +volumes: + my-db: + external: false #if true will try to find a folder that you set \ No newline at end of file