mirror of
https://github.com/aleleba/curso-basico-kubernetes.git
synced 2026-09-08 11:49:34 -06:00
Agregando clase 3
This commit is contained in:
@@ -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
|
||||
@@ -0,0 +1,5 @@
|
||||
# Clase 3
|
||||

|
||||

|
||||
|
||||

|
||||
Binary file not shown.
|
After Width: | Height: | Size: 438 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 77 KiB |
Reference in New Issue
Block a user