File "Docker-compose.yml"

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

version: '3.8'

services:
  web:
    build:
      context: .
      dockerfile: Dockerfile
    container_name: Seleccion
    ports:
      - "8092:80"                   
    volumes:
      - ./:/var/www/html       
    #depends_on:
    #  - db
    networks:
      - red_local

      
volumes:
  db_data:

networks:
  red_local: