Creating docker compose configurations
FROM php:7.2-apache
version: "3"
services:
www:
build: .
ports:
- "8080:80"
volumes:
- ./src:/var/www/html/
networks:
- default
docker-compose up
docker-compose down