File "Docker-compose-20260419160152.yml"

Full Path: C:/wamp64/www/Asistencia_Capacitacion/Docker-compose-20260419160152.yml
File size: 364 bytes
MIME-type: text/plain
Charset: utf-8


services:
  web:
    build:
      context: .
      dockerfile: Dockerfile
    container_name: Asistencias
    ports:
      - "8088:80"                   # http://localhost:8088
    volumes:
      - ./:/var/www/html        # Monta tu código
    #depends_on:
      
    networks:
      - red_local

volumes:
  db_data:

networks:
  red_local: