Running php-fpm and nginx processes in the same container with Laravel (mysql, mariadb, sqlite).
.env
webapp/.env
# Build up
docker compose up --build -d
# Show
docker compose ps
# Interactive container terminal
docker exec -it app_host bash
docker exec -it mysql_host bash
# Remove webapp dir and create new Laravel app
composer create-project laravel/laravel webapp
# Or copy your Laravel project files to
webapp