File "Docker-compose-20260419141827.yml"
Full Path: C:/wamp64/www/Formaciones/Docker-compose-20260419141827.yml
File size: 671 bytes
MIME-type: text/plain
Charset: utf-8
services:
web:
build:
context: .
dockerfile: Dockerfile
container_name: Formaciones
ports:
- "8096:80"
volumes:
- ./:/var/www/html
depends_on:
- db
networks:
- red_local
db:
image: mysql:5.7
container_name: mysql_Formaciones
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: miappdb
MYSQL_USER: user
MYSQL_PASSWORD: password
ports:
- "3319:3319"
volumes:
- db_data:/var/lib/mysql
networks:
- red_local
volumes:
db_data:
networks:
red_local: