Merge pull request #2 from aleleba/agregando-contenido-clase-2
Agregando contenido clase 2
This commit is contained in:
commit
edc2953082
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
CuestionarioKubernetes.docx
|
||||
Videos de Clase
|
||||
Hojas de Asistencia
|
||||
Clase 2/Ejercicio/mysql-phpmyadmin
|
||||
Clase 2/Clase 2.pptx
|
||||
Clase 3
|
BIN
Clase 1/.DS_Store
vendored
BIN
Clase 1/.DS_Store
vendored
Binary file not shown.
BIN
Clase 2/Clase 2.pptx
Normal file
BIN
Clase 2/Clase 2.pptx
Normal file
Binary file not shown.
28
Clase 2/Ejercicio/mysql-phpmyadmin/docker-compose.yaml
Normal file
28
Clase 2/Ejercicio/mysql-phpmyadmin/docker-compose.yaml
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user