2 Commits
Author SHA1 Message Date
aleleba 3488aa5217 Agregando la resolucion del reto clase 3 2022-10-10 22:19:59 -06:00
aleleba 90636a6e81 Agregando clase 3 2022-10-10 22:17:35 -06:00
5 changed files with 49 additions and 0 deletions
@@ -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
@@ -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
+5
View File
@@ -0,0 +1,5 @@
# Clase 3
![Diap1](./img/Diap1.png)
![Diap2](./img/Diap2.png)
![Diap3](../img/Agradecimiento.png)
Binary file not shown.

After

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB