Environment for laravel applications
Available for versions 7.X and 8.X of the Laravel Framework.
docker-compose up -d --build├── app
├── configs
│ └── mysql
├── data
│ ├── logs
│ └── mysql
├── dockerfiles
│ └── php
│ └── Dockerfile
├── docker-compose.yml
└── README.md
clone your application in the app directory and mount the server with the following command:
docker exec -it php_app php artisan serve --host=0.0.0.0 --port=8000