mirror of
https://github.com/aleleba/KubernetesClassAkademik.git
synced 2025-06-20 22:18:24 -06:00
First commit
This commit is contained in:
BIN
Clase 2/Ejercicio/.DS_Store
vendored
Normal file
BIN
Clase 2/Ejercicio/.DS_Store
vendored
Normal file
Binary file not shown.
16
Clase 2/Ejercicio/mysql/docker-compose.yaml
Normal file
16
Clase 2/Ejercicio/mysql/docker-compose.yaml
Normal file
@ -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
|
Reference in New Issue
Block a user